nopsuite_button 0.0.4 copy "nopsuite_button: ^0.0.4" to clipboard
nopsuite_button: ^0.0.4 copied to clipboard

nopSuite button is a popup animated button

example/lib/main.dart

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: ()
            {

            },
          ),


        ],
      ),
    );
  }
}
1
likes
120
points
21
downloads

Publisher

unverified uploader

Weekly Downloads

nopSuite button is a popup animated button

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on nopsuite_button