typeweight

Creator: coderz1093

Last updated:

0 purchases

typeweight Image
typeweight Images
Add to Cart

Description:

typeweight

TypeWeight #
Use more readable font weight definitions in Flutter.
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,
),
),
),
),
);
}
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.