pin_lock_screen 0.0.7 pin_lock_screen: ^0.0.7 copied to clipboard
Enhance your Flutter app's privacy and security with the pin_lock_screen package. Easily integrate a secure screen lock PIN feature.
import 'package:flutter/material.dart';
import 'package:pin_lock_screen/pin_lock_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
PinLockScreen(
correctPin: 1111,
pinLength: 4,
onPinMatched: (pin) {},
onPinChanged: (pin) {},
disableDotColor: Colors.yellow,
wrongPinDotColor: Colors.red,
filledPinDotColor: Colors.black,
buttonElevation: 3,
dotsShape: BoxShape.rectangle,
gapBtwDotsAndNumPad: 100,
),
],
),
);
}
}