Skip to content

Instantly share code, notes, and snippets.

View MarcioQuimbundo's full-sized avatar
🎯
Focusing

Márcio Quimbundo MarcioQuimbundo

🎯
Focusing
View GitHub Profile
@MarcioQuimbundo
MarcioQuimbundo / number_input.dart
Created May 1, 2019 17:04 — forked from slightfoot/number_input.dart
Number Input Widget - For entering pins and other such things - #HumpDayQandA - 24th April 2019
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
void main() => runApp(ExampleApp());
class ExampleApp extends StatefulWidget {
@override
_ExampleAppState createState() => _ExampleAppState();
}