d_pin 0.0.4 copy "d_pin: ^0.0.4" to clipboard
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.

example/lib/main.dart

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;
            });
          },
        ),
      ),
    );
  }
}
1
likes
80
pub points
12%
popularity

Publisher

verified publisherdarray.co

Otp and pin input field with and without button and fully customized, with box or underline design.

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on d_pin