n_pin_board 0.0.6+7 copy "n_pin_board: ^0.0.6+7" to clipboard
n_pin_board: ^0.0.6+7 copied to clipboard

Configurable and easy-to-use cross-platform pin board.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:n_pin_board/n_pin_board.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  NPinController nPinController = NPinController(
    shuffle   : true,
    hideInputs: false
  );

  printControllerData(){
    debugPrint('========================');
    debugPrint('Inputs: ${nPinController.inputs.join(', ')}');
    debugPrint('Length: ${nPinController.length}');
    debugPrint('isFull: ${nPinController.isFull}');
  }

  @override
  void initState() {
    super.initState();
    nPinController.addListener(()=> printControllerData());
  }

  @override
  Widget build(BuildContext context) =>

    MaterialApp(
      debugShowCheckedModeBanner: true,
      title : 'Pin Board Example',
      home  : Scaffold(
        body:
        Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            NPinBoard(
              // leftButtonTap   : () => nPinController.reset(),
              controller      : nPinController,
              boardStyle      : BoardStyle(
                divider: true
              ),
              pinInputStyle   :
              PinInputStyle(
                obscureText     : true,
                height          : 28,
                width           : 28,
                borderWidth     : 1,
                borderColor     : Colors.grey,
                emptyBackground : Colors.grey.withOpacity(0.1),
                textStyle       : const TextStyle(fontSize: 15, color: Colors.black),
                borderRadius    : const Radius.circular(20),
              ),
              pinButtonStyle :
              PinButtonStyle(
                height          : 70,
                overHeight      : 75,
                width           : 70,
                overWidth       : 75,
                borderWidth     : 1,
                borderColor     : Colors.grey,
                overBorderColor : Colors.red,
                overBackground  : Colors.red,
                // overAlignment   : Alignment.topCenter,
                borderRadius    : const Radius.circular(20),
                iconStyle       : PinIconStyle(color: Colors.blue,  size: 20),
                iconOverStyle   : PinIconStyle(color: Colors.white, size: 15),
                numberStyle     : const TextStyle( fontSize: 15, color: Colors.grey  ),
                numberOverStyle : const TextStyle( fontSize: 20, color: Colors.white ),
                leftIcon        : Icons.abc,
                rightIcon       : Icons.backspace_outlined,
                shadow          : const BoxShadow(color: Colors.grey, blurRadius: 1, blurStyle: BlurStyle.outer),
                overShadow      : const BoxShadow(color: Colors.black, blurRadius: 20, blurStyle: BlurStyle.outer),
              )
            ),
            InkWell(
              onTap: () {
                printControllerData();
              },
              child: const Text('Print controller data'),
            )
          ],
        ),
      ),
    );
}
3
likes
130
pub points
53%
popularity
screenshot

Publisher

unverified uploader

Configurable and easy-to-use cross-platform pin board.

Repository (GitHub)
View/report issues

Topics

#pin #board #cross-platform

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on n_pin_board