FLUTTER ECOSYSTEM

cristianpaulo4/utils_rinch_text

इस विधि लंबे टेक्स्ट के प्रारूपण के लिए आदर्श TextSpan सूची लौटाती है। इस कार्यान्वयन में निम्नलिखित टैग समर्थित हैं, उदाहरण देखें।

utils_rinch_text प्रोजेक्ट कवर
Stars
2
Forks
0
अंतिम पुश (UTC)
4 फ़र॰ 2023
प्रोजेक्ट स्थिति
सक्रिय
Cristian Paulo  GitHub avatar
GITHUB User

Cristian Paulo ↗

Graduado em Análise e Desenvolvimento de Sistemas pelo Instituto Federal do Piaui Campus-Corrente, residente em Formosa do Rio Preto - BA

भाषाएँC++CMakeDartHTMLCObjective-CJavaShellSwiftKotlin

उपयोग की गई निर्भरताएँ

निर्भरता सूची 4 आइटम
  • flutter{"sdk":"flutter"}
  • url_launcher^6.1.8
  • flutter_testडेवलपमेंट{"sdk":"flutter"}
  • flutter_lintsडेवलपमेंट^2.0.0

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

This method returns a list of TextSpan ideal for formatting long text this implementation supports the following tags, see example.

<a>Link web<a>
<p> add paragraph

Captura de tela 2023-02-03 195339

Add custom tags

Text de example:

 String textExample = """
  <i>Flutter<i> is an open source mobile app development framework <l>created by Google.<l> 
  It enables the creation of native apps for <i>iOS and Android<i> with a single Dart code base. 
  With its flexible and performant architecture, <o>Flutter has become one of the most 
  popular options for building mobile apps.<o> In addition, it offers a wide range of widgets 
  and animated visual effects that help you create attractive and intuitive applications. <p>
  For more information about Flutter, head over to the main 
  page at <a>https://flutter.dev/<a> and start <b>exploring the possibilities<b> 
  of this powerful app development tool.
  """;

Implementation

RichText(
   text: TextSpan(
     children: UtilsRinchText.generate(
       textExample,
       customTags: {
         "<i>": const TextStyle(
           fontWeight: FontWeight.bold,
           fontSize: 20,
         ),
         "<l>": const TextStyle(
           fontSize: 20,
           color: Colors.red,
           fontWeight: FontWeight.bold,
         ),
         "<a>": const TextStyle(
           color: Colors.green,
           fontWeight: FontWeight.bold,
         ),
         "<o>": const TextStyle(
           fontWeight: FontWeight.bold,
           color: Colors.blue,
           fontSize: 20,
         ),
         "<b>": const TextStyle(
           fontWeight: FontWeight.bold,
           color: Colors.orange,
           fontSize: 20,
         ),
       },
     ),
   ),
 ),