custom_text 0.8.0 custom_text: ^0.8.0 copied to clipboard
A highly customisable text widget that enables decorations and gestures on strings.
import 'package:flutter/material.dart';
import 'package:custom_text_example/utils/router.dart';
void main() => runApp(const App());
class App extends StatelessWidget {
const App();
@override
Widget build(BuildContext context) {
return MaterialApp.router(
title: 'CustomText Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSwatch(
primarySwatch: Colors.blueGrey,
).copyWith(primary: Colors.grey.shade800),
textTheme: const TextTheme(
bodyLarge: TextStyle(fontWeight: FontWeight.normal, height: 1.2),
bodyMedium: TextStyle(fontSize: 18.0, height: 1.5),
),
),
routeInformationProvider: router.routeInformationProvider,
routeInformationParser: router.routeInformationParser,
routerDelegate: router.routerDelegate,
);
}
}