applever_tech_widgets 0.0.6
applever_tech_widgets: ^0.0.6 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,
),
);
}
}
ALAboutDialog #
The ALAboutDialog widget is designed to display information about your application in a structured
dialog format. It includes various sections
such as the title, content, and a close button. Key features include:
Features #
- Easy to create about dialog with providing required title section,content section,close button
- Supports specifying title section, content section, close button.
Getting Started #
Title Section: Centered title section that may include an image, app name, and potentially other details using a combination of Row and Column.
Content Section: The main content section displays information like version, app description, and developer details using ALText and potentially other widgets.
Close Button: A styled close button (ElevatedButton) allows the user to close the dialog.
To use this package, include ALAboutDialog in your pubspec.yaml:
class SampleWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return showDialog(
context: context,
builder: (BuildContext context) {
return ALAboutDialog(
version: '1.0.0',
appName: 'Your App Name',
appDescription: 'Your App Description',
developedBy: 'Your Developer Details',
image: 'assets/your_image_file.png',
);
},
);
}
}