FLUTTER ECOSYSTEM

MohamedAbd0/stroke_text

텍스트 위젯에 테두리(테두리) 스타일을 추가하는 간단한 플러터 패키지

stroke_text 프로젝트 이미지
Stars
1
Forks
2
최근 푸시(UTC)
2025. 1. 14.
프로젝트 상태
활성
 Mohamed Abdo Elnashar GitHub avatar
GITHUB User

Mohamed Abdo Elnashar ↗

Senior Flutter Developer I am a software engineer with 7+ years of experience, interested in mobile applications for more than 6 years, studying for a master's

Dscale.ioDubai, UAE
언어C++CMakeDartHTMLCShellSwiftKotlinObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 3 개
  • flutter{"sdk":"flutter"}
  • flutter_test개발 의존성{"sdk":"flutter"}
  • flutter_lints개발 의존성^1.0.0

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

Stroke Text Widget

A simple flutter package to add stroke (border) style to a text widget

https://raw.githubusercontent.com/MohamedAbd0/stroke_text/HEAD/images/logo.png

Installation

  1. Add this to your package's pubspec.yaml file:
dependencies:
  stroke_text: any
  1. Get the package using your IDE's GUI or via command line with
$ pub get
  1. Import the color.dart file in your app
import 'package:stroke_text/stroke_text.dart';

Usage

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,
),

Screenshots

https://raw.githubusercontent.com/MohamedAbd0/stroke_text/HEAD/images/Simulator.png