nopsuite_button 0.0.4 nopsuite_button: ^0.0.4 copied to clipboard
nopSuite button is a popup animated button
import 'package:flutter/material.dart';
import 'package:nopsuite_button/nopsuite_button.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'NopSuite button Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Column(
children: [
NopSuiteButton(
child: Text("Click me"),
width: 200,
depth: 3,
color: Colors.red,
onTap: ()
{
},
),
],
),
);
}
}