v1.0.0stroke_text
Ein einfaches Flutter-Plugin zum Anwenden von Strich-(Rand-)Stilen auf ein Text-Widget
41Likes 210030-Tage-Downloads130Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Ein einfaches Flutter-Paket, um einem Textwidget einen Strich (Rand)-Stil hinzuzufügen
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.0Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
A simple flutter package to add stroke (border) style to a text widget
https://raw.githubusercontent.com/MohamedAbd0/stroke_text/HEAD/images/logo.png
pubspec.yaml file:dependencies:
stroke_text: any
$ pub get
color.dart file in your appimport 'package:stroke_text/stroke_text.dart';
default text widget
StrokeText(text: "Stroke Text",)
custom text style
StrokeText(
text: "Stroke Text",
textStyle: TextStyle(
fontSize: 50
),
),
StrokeText(
text: "Flutter",
textStyle: TextStyle(
fontSize: 50,
color: Colors.green
),
strokeColor: Colors.amber,
strokeWidth: 5,
),
https://raw.githubusercontent.com/MohamedAbd0/stroke_text/HEAD/images/Simulator.png