custom_text_widget_pro 1.0.0
custom_text_widget_pro: ^1.0.0 copied to clipboard
Rich Text Formatting Support for custom fonts, colors, and styling.
custom_text_widget #
This Flutter plugin provides an API for querying information about an application package.
Platform Support #
| Android | iOS | MacOS | Web | Linux | Windows |
|---|---|---|---|---|---|
| ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
Requirements #
- Flutter >=3.19.0
- Dart >=3.3.0 <4.0.0
- iOS >=12.0
- MacOS >=10.14
- Android
compileSDK34 - Java 17
- Android Gradle Plugin >=8.3.0
- Gradle wrapper >=8.4
Usage #
You can use the PackageInfo to query information about the application package. This works both on iOS and Android.
import 'package:custom_text_widget/custom_text_widget_pro.dart';
import 'package:flutter/material.dart';
class SampleCustomText extends StatelessWidget {
const SampleCustomText({super.key});
@override
Widget build(BuildContext context) {
return TextWidget(
"Text Value", 20.0, Colors.black54, FontWeight.w500, TextAlign.center);
}
}