Last updated:
0 purchases
flutter keyboard done
flutter_keyboard_done #
A new Flutter Plugin for IOS where show a done button when you inputing somethings.
Getting Started #
Import
import 'package:flutter_keyboard_done/flutter_keyboard_done.dart';
copied to clipboard
Usage
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: FlutterKeyboardDoneWidget(
child: Scaffold(
body: const Center(
child: TextField(),
),
appBar: AppBar(
title: Text('Plugin example app'),
),
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.