interactive_text_plus 1.1.7 copy "interactive_text_plus: ^1.1.7" to clipboard
interactive_text_plus: ^1.1.7 copied to clipboard

A Flutter package for rendering interactive text with support for clickable phone numbers, email addresses, and URLs.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Interactive Text Example')),
        body: InteractiveTextScreen(
          description:
              'Call me at 0551234567, visit https://example.com, or email test@example.com.',
        ),
      ),
    );
  }
}
1
likes
145
points
62
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter package for rendering interactive text with support for clickable phone numbers, email addresses, and URLs.

License

MIT (license)

Dependencies

flutter, url_launcher

More

Packages that depend on interactive_text_plus