hash_at_links_detector 1.0.1 hash_at_links_detector: ^1.0.1 copied to clipboard
hash at links detector Custom text to detect '#'_'@'_'links' support many languages
import 'package:flutter/material.dart';
import 'example.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Example(),
);
}
}