bordered_text 2.0.0 bordered_text: ^2.0.0 copied to clipboard
Flutter plugin for applying subtle stroke to a Text widget. Supports Android, iOS, and Web.
BorderedText #
Adds Stroke to a Flutter Text widget
Getting Started #
We can apply a very thin and subtle stroke to a [Text] #
import 'package:bordered_text/bordered_text.dart';
class StrokeTester extends StatelessWidget {
const StrokeTester({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Bordered Text test',
home: Scaffold(
appBar: AppBar(
title: Text('Bordered Text'),
),
body: Center(
child: BorderedText(
strokeWidth: 1.0,
child: Text(
'Bordered Text Widget',
style: TextStyle(
decoration: TextDecoration.none,
decorationColor: Colors.red,
),
),
),
),
),
);
}
}