Features
Getting started
Usage
class FontExample extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: BoldTextWidget(
title: "This is Example",
fontsize: 20,
fontcolor: Colors.black,
align: TextAlign.center,
),
);
}
}