rich_text_widget 0.2.1 copy "rich_text_widget: ^0.2.1" to clipboard
rich_text_widget: ^0.2.1 copied to clipboard

outdated

This library is a rich text component, which supplements the function of Flutter rich text that can only splice components. The library is very convenient to apply to internationalized text without sp [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:rich_text_widget/rich_text_widget.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
        // This makes the visual density adapt to the platform that you run
        // the app on. For desktop platforms, the controls will be smaller and
        // closer together (more dense) than on mobile platforms.
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: Scaffold(
        appBar: AppBar(
          // Here we take the value from the MyHomePage object that was created by
          // the App.build method, and use it to set our appbar title.
          title: Text("demo"),
        ),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              RichTextWidget(
                // default Text
                Text(
                  'You have pushed the button this many times:',
                  style: TextStyle(color: Colors.black),
                ),
                // rich text list
                richTexts: [
                  BaseRichText(
                    "pushed",
                    style: TextStyle(color: Colors.yellow),
                    onTap: () => {print("touch pushed")},
                  ),
                  BaseRichText(
                    "button",
                    style: TextStyle(color: Colors.red),
                    // onTap: () => {print("touch button")},
                  ),
                ],
              ),
            ],
          ),
        ), // This trailing comma makes auto-formatting nicer for build methods.
      ),
    );
  }
}
4
likes
0
pub points
85%
popularity

Publisher

unverified uploader

This library is a rich text component, which supplements the function of Flutter rich text that can only splice components. The library is very convenient to apply to internationalized text without splitting strings.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on rich_text_widget