quick_text 1.0.3 copy "quick_text: ^1.0.3" to clipboard
quick_text: ^1.0.3 copied to clipboard

A Flutter package for simplified text formatting with markdown-like syntax.

example/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData(),
      home: Scaffold(
        appBar: AppBar(
          title: const Text('QuickText Example'),
        ),
        body: const Center(
          child: QuickText(
            'This is **bold**, *italic*, _underline_, ~strikethrough~ and [colored](red) text.',
          ),
        ),
      ),
    );
  }
}
5
likes
160
points
43
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for simplified text formatting with markdown-like syntax.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, url_launcher

More

Packages that depend on quick_text