ALText
ALTextWidgets
is a Flutter package that simplifies the creation of text widgets with customizable styling.
Features
- Easily create text widgets with customized styling.
- Supports specifying text content, size, boldness, and color.
Getting Started
To use this package, include ALText
in your pubspec.yaml
:
class SampleWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: ALText(
sTextToDisplay: "Sample",
dTextSize: 14,
bMakeBold: false,
colorOfText: Colors.black,
),
);
}
}