# Flutter-Clicky-Button **Repository Path**: buxuele/Flutter-Clicky-Button ## Basic Information - **Project Name**: Flutter-Clicky-Button - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-11-29 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Clicky Button for flutter ![logo](./images/logo.png) A Custom 3D Button in Flutter ## Demo ![demo](./images/demo.gif) ## How To Use it ``` import 'clicky_button/clicky_button.dart' ... ClickyButton( child: Text( 'Click Me!', style: TextStyle( color: Colors.white, fontSize: 22), ), color: Colors.green, onPressed: () {}, ) ... ``` #### To change size of button just wrap button in Transform.scale() ``` import 'clicky_button/clicky_button.dart' ... Transform.scale( scale: 0.6, child: ClickyButton( child: Text( 'Click Me!', style: TextStyle( color: Colors.white, fontSize: 22), ), color: Colors.green, onPressed: () {}, ), ) ... ``` ### Thank you