bettertext 1.0.0 copy "bettertext: ^1.0.0" to clipboard
bettertext: ^1.0.0 copied to clipboard

An Easy way to use flutter Text widget with most commonly used properties only

example/lib/main.dart

library bettertext;

import 'package:bettertext/bettertext.dart';

/// A Calculator.
///

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Container(
      child: BetterText(
        text: 'sample_text',
        cl: Colors.red,
        sz: 25.0,
        wt: FontWeight.w900,
      ),
    );
  }
}
0
likes
120
pub points
0%
popularity

Publisher

unverified uploader

An Easy way to use flutter Text widget with most commonly used properties only

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on bettertext