flutter_trigger_input 0.4.1 copy "flutter_trigger_input: ^0.4.1" to clipboard
flutter_trigger_input: ^0.4.1 copied to clipboard

High-performance Flutter Rich Text Input for Mentions (@), Hashtags (#), and Links. Built on Delta Architecture with atomic deletion, custom context menus, and JSON sync.

example/lib/main.dart

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

import 'routes/app_routes.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Trigger Input Example',
      localizationsDelegates: const [
        GlobalMaterialLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
      ],
      initialRoute: AppRoutes.home,
      routes: AppRoutes.getRoutes(),
    );
  }
}
6
likes
160
points
248
downloads
screenshot

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

High-performance Flutter Rich Text Input for Mentions (@), Hashtags (#), and Links. Built on Delta Architecture with atomic deletion, custom context menus, and JSON sync.

Repository (GitHub)
View/report issues

Topics

#chat #mentions #hashtag #rich-text #textfield

License

MIT (license)

Dependencies

flutter, json_annotation

More

Packages that depend on flutter_trigger_input