About 13,200 results
Open links in new tab
  1. How to create number input field in Flutter? - Stack Overflow

    Mar 30, 2018 · To Create number input field, You just need to give following property inside your textfield or textformfield. TextField( keyboardType: TextInputType.number, // Set the keyboard type to number decoration: InputDecoration( hintText: 'Enter a number', ), );

    Missing:

    • Dialog Box

    Must include:

  2. dart - Flutter: How to implement on screen Numpad for multiple ...

    Oct 2, 2023 · I have created a custom Numpad widget in my Flutter app. class NumPadCheckout extends StatelessWidget { final TextEditingController controller; final Function delete; final Function onSubmit; const NumPadCheckout({ Key? key, required this.delete, required this.onSubmit, required this.controller, }) : super(key: key); @override.

    Missing:

    • Dialog Box

    Must include:

  3. User input number dialog box in flutter - Stack Overflow

    Dec 15, 2019 · I've gotten as far as creating a grid view of the items, and making the first image clickable, but I'm not sure how to make the input dialog box. Any help would be greatly appreciated. runApp(MaterialApp( title: 'Navigation Basics', home: FirstRoute(), )); @override. Widget build(BuildContext context) { return MaterialApp(title: 'Shopping List');

  4. Create a Custom NumPad (Number Keyboard) in Flutter

    This article shows you how to implement your own custom num pad (number keyboard) in Flutter. We will make it from scratch without using any third-party plugins. The code we have to write will be a little bit long but contain no hard stuff.

    Missing:

    • Dialog Box

    Must include:

  5. Flutter – Creating Number Input Field - GeeksforGeeks

    Apr 26, 2025 · In this article, you will see how to create a number input field that takes only numbers from the keyboard. This helps you when you have to take the user input only the numbers. A sample video is given below to get an idea …

    Missing:

    • Dialog Box

    Must include:

  6. Building a custom numeric keypad in Flutter

    Mar 11, 2023 · There are two things we need to accomplish, build the numeric keypad and then make it interact with the input field; Let's begin by building the numeric keypad. Open the numeric_keypad.dart file or ctrl + click on the NumericKeyPad() widget instance in your main.dart file which will take you to its implementation; and for our proud mac users ...

    Missing:

    • Dialog Box

    Must include:

  7. numpad_layout example | Flutter package - Pub

    Jul 29, 2023 · import 'package:numpad_layout/widgets/numPad.dart'; void main() { runApp(const MyApp()); class MyApp extends StatefulWidget { const MyApp({super.key}); @override . State<MyApp> createState() => _MyAppState(); class _MyAppState extends State<MyApp> { String number = ""; @override . Widget build(BuildContext context) { return MaterialApp(

  8. number_pad_keyboard | Flutter package - Pub

    Jul 9, 2024 · A Flutter package that provides a customizable number pad keyboard widget for entering PIN codes or numeric input. Customizable Design: Easily customize the look and feel of the number pad keyboard. PIN Code Entry: Suitable for entering PIN codes or any numeric input in Flutter applications.

    Missing:

    • Dialog Box

    Must include:

  9. How to Create Number Input field in Flutter - Flutter Happy

    Mar 22, 2023 · To create a number input field in Flutter, you can use the TextFormField widget and set its keyboardType property to TextInputType.number. Here is an example: In this example, we have created a TextFormField with a number keyboard type and added a label and border to the input field using the InputDecoration class.

  10. How to Insert Flutter Numeric Input Keyboard? - AppOverride

    Apr 12, 2024 · In this tutorial, we’ve explored how to integrate a numeric input keyboard into your Flutter application. Whether you choose to use existing packages or leverage built-in widgets and features, implementing a numeric input keyboard can greatly enhance the user experience and simplify data entry tasks

    Missing:

    • Dialog Box

    Must include:

  11. Some results have been removed
Refresh