Skip to content

Instantly share code, notes, and snippets.

View IlmanNashran's full-sized avatar
😘
Focusing

Muhammad Ilman Nashran IlmanNashran

😘
Focusing
View GitHub Profile
@IlmanNashran
IlmanNashran / Fancy Button - Flutter
Created September 20, 2023 22:47 — forked from mkiisoft/Fancy Button - Flutter
Fancy Button made for Flutter Games and Apps
import 'package:flutter/material.dart';
class FancyButton extends StatefulWidget {
const FancyButton({
Key key,
@required this.child,
@required this.size,
@required this.color,
this.duration = const Duration(milliseconds: 160),
this.onPressed,