faceids 0.0.7 copy "faceids: ^0.0.7" to clipboard
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 !!!!!");
            },
          ),
        ),
      ),
    );
  }
}
1
likes
145
points
377
downloads

Publisher

unverified uploader

Weekly Downloads

A custom Flutter button package with customizable styles and functionality.

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on faceids