Skip to content

Instantly share code, notes, and snippets.

View taheri79's full-sized avatar

Hossein Laletaheri taheri79

View GitHub Profile
@taheri79
taheri79 / FancyButton.dart
Last active August 11, 2024 08:59
Flutter Fancy Button
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,