mirror of
https://github.com/Iconica-Development/flutter_single_character_input.git
synced 2025-05-18 19:53:45 +02:00
18 lines
476 B
Dart
18 lines
476 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_single_character_input/flutter_single_character_input.dart';
|
|
|
|
void main() {
|
|
runApp(const MaterialApp(home: FlutterSingleCharacterInputDemo()));
|
|
}
|
|
|
|
class FlutterSingleCharacterInputDemo extends StatelessWidget {
|
|
const FlutterSingleCharacterInputDemo({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Scaffold(
|
|
body: SingleCharacterInput(),
|
|
);
|
|
}
|
|
}
|