d_pin 0.0.4 d_pin: ^0.0.4 copied to clipboard
Otp and pin input field with and without button and fully customized, with box or underline design.
import 'package:flutter/material.dart';
import 'package:d_pin/d_pin.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int value = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: DPin(
buttonColor: Colors.blue,
buttonText: "Confirm",
number: 6,
underline: false,
fieldBorderColor: Colors.red,
withButton: false,
onValueChanged: (v) {
setState(() {
value = v;
});
},
),
),
);
}
}