FLUTTER ECOSYSTEM

MohamedAbd0/stroke_text

एक सरल फ्लटर पैकेज जो टेक्स्ट विजेट में स्ट्रोक (बॉर्डर) शैली जोड़ता है

stroke_text प्रोजेक्ट कवर
Stars
1
Forks
2
अंतिम पुश (UTC)
14 जन॰ 2025
प्रोजेक्ट स्थिति
सक्रिय
 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