typeweight 0.0.2 copy "typeweight: ^0.0.2" to clipboard
typeweight: ^0.0.2 copied to clipboard

outdated

A more readable font weights for flutter/material.

TypeWeight #

Since I am not really good remembering font weights by the numbers, and to be honest, even though it wasn't the problem, humane names are better in my opinion. Also, humane names are better when in communication.

Usage #

Install typeweight as a dependency into your project, then use it in replacement of FontWeight.

Example #

import 'package:flutter/material.dart';
import 'package:typeweight/typeweight.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'TypeWeight Demo',
      home: Scaffold(
        body: Center(
          child: Text(
            'TypeWeight',
            style: TextStyle(
              fontWeight: TypeWeight.black,
            ),
          ),
        ),
      ),
    );
  }
}
4
likes
30
points
45
downloads

Publisher

verified publisherfrenco.dev

Weekly Downloads

A more readable font weights for flutter/material.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on typeweight