noodle_text 1.0.1+2 copy "noodle_text: ^1.0.1+2" to clipboard
noodle_text: ^1.0.1+2 copied to clipboard

outdated

Simple alternative to RichText

example/lib/main.dart

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

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    //Normal material App
    return MaterialApp(
      title: 'Noodle Text',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Noodle Text'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          crossAxisAlignment: CrossAxisAlignment.center,
          mainAxisAlignment: MainAxisAlignment.spaceEvenly,
          children: [
            NoodleText(
              'Example of <b>bold text</b>',
              style: const TextStyle(fontSize: 24),
            ),
            NoodleText(
              'Example of <i>italic text</i>',
              style: const TextStyle(fontSize: 24),
            ),
            NoodleText(
              'Example of <u>underline text</u>',
              style: const TextStyle(fontSize: 24),
            ),
            NoodleText(
              'Example of <c>color</c> <c>text</c>',
              style: const TextStyle(fontSize: 24),
              spanColors: const [Colors.blue, Colors.red],
            ),
            NoodleText(
              'Example <b><c>of</c></b> <i>multiple</i> <c><u>styles</u></c>',
              style: const TextStyle(fontSize: 24),
              spanColors: const [Colors.blue, Colors.red],
            ),
          ],
        ),
      ),
    );
  }
}
2
likes
70
pub points
0%
popularity

Publisher

verified publishernoodle.cx

Simple alternative to RichText

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on noodle_text