0 purchases
prabhu india package
A custom Flutter text widget with styling and alignment options.
Features #
Getting started #
TODO: List prerequisites and provide or point to information on how to
start using the package.
Usage #
const like = 'sample';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Custom Text Widget Example'),
),
body: Center(
child: CustomTextWidget(
text: 'Hello, Custom Text!',
textStyle: TextStyle(
fontSize: 24.0,
fontWeight: FontWeight.bold,
color: Colors.blue,
),
textAlign: TextAlign.center,
),
),
),
);
}
}
copied to clipboard
Additional information #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.