flutter_keyboard_done 1.0.1 copy "flutter_keyboard_done: ^1.0.1" to clipboard
flutter_keyboard_done: ^1.0.1 copied to clipboard

There is a DONE button above input keyboard when you inputing somethings.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_keyboard_done/flutter_keyboard_done.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(
      home: FlutterKeyboardDoneWidget(
        child: Scaffold(
          appBar: AppBar(
            title: Text('Plugin example app'),
          ),
          body: const Center(
            child: TextField(),
          ),
        ),
      ),
    );
  }
}
1
likes
140
points
37
downloads

Publisher

unverified uploader

Weekly Downloads

There is a DONE button above input keyboard when you inputing somethings.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_keyboard_done