applever_tech_widgets 0.0.3
applever_tech_widgets: ^0.0.3 copied to clipboard
customized text for your project
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,
),
);
}
}