custom_text 0.7.0 copy "custom_text: ^0.7.0" to clipboard
custom_text: ^0.7.0 copied to clipboard

A highly customisable text widget that enables decorations and gestures on strings.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:custom_text_example/common/router.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp.router(
      title: 'CustomText Demo',
      theme: ThemeData(
        primarySwatch: Colors.blueGrey,
        textTheme: const TextTheme(
          bodyText1: TextStyle(fontWeight: FontWeight.normal, height: 1.2),
          bodyText2: TextStyle(fontSize: 18.0, height: 1.5),
        ),
      ),
      routeInformationProvider: router.routeInformationProvider,
      routeInformationParser: router.routeInformationParser,
      routerDelegate: router.routerDelegate,
    );
  }
}
84
likes
0
pub points
85%
popularity

Publisher

verified publisherkaboc.cc

A highly customisable text widget that enables decorations and gestures on strings.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, meta, text_parser

More

Packages that depend on custom_text