Artistic UI

Artistic UI package lets you create different types of buttons and containers with your choice of functionalities.

Installation

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  artistic_ui:
  1. Import the package and use it in your Flutter App.
import 'package:artistic_ui/artistic_ui.dart';

Example


class FancyScreen extends StatelessWidget {  
  const FancyScreen({Key? key}) : super(key: key);  
  
  @override  
  Widget build(BuildContext context) {  
    return Scaffold(  
      body: Center(  
        child: const CustomButton(
          onPressed: () {
            
          },
          text: "UI",
          containerColor: Colors.white,
          padding: 20.0,
          shadowColor: Colors.pinkAccent,
          borderRadius: 30.0,
          textColor: Colors.pink,
          fontSize: 13.0,
        ),
      ),  
    );  
  }  
}
There are a number of properties that you can modify:

-height -width -text size -text color -container color -container shadow -container border -shadow color

Libraries

artistic_ui