faceids 0.0.7
faceids: ^0.0.7 copied to clipboard
A custom Flutter button package with customizable styles and functionality.
example/lib/main.dart
import 'package:faceids/faceids.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: CustomButton(
text: 'OnPressed',
onPressed: () {
debugPrint("pressed !!!!!");
},
),
),
),
);
}
}