v1.0.0stroke_text
텍스트 위젯에 테두리(경계선) 스타일을 적용하기 위한 간단한 Flutter 플러그인
41좋아요 2.1천30일 다운로드130Pub 점수
AndroidiOSWebmacOSWindowsLinux
텍스트 위젯에 테두리(테두리) 스타일을 추가하는 간단한 플러터 패키지
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.0아래는 영문 원문 스냅샷입니다. 최신 내용은 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