artistic_ui 1.0.1 copy "artistic_ui: ^1.0.1" to clipboard
artistic_ui: ^1.0.1 copied to clipboard

outdated

A new Flutter project.

artistic_ui #

A new Flutter project.

Getting Started #

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Artistic UI #

custom ui package lets you add a beautiful gradient container and buttons to your Flutter app.

Installation #

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

Example #

There are a number of properties that you can modify:

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

class FancyScreen extends StatelessWidget {  
  const FancyScreen({Key? key}) : super(key: key);  
  
  @override  
  Widget build(BuildContext context) {  
    return Scaffold(  
      body: Center(  
        child: const CustomButton(
           onPressed: () {
            print("THis is the ui button");
          },
          text: "UI",
          containerColor: Colors.white,
          padding: 20.0,
          shadowColor: Colors.pinkAccent,
          borderRadius: 30.0,
          textColor: Colors.pink,
          fontSize: 13.0,
        ),
      ),  
    );  
  }  
}
5
likes
0
pub points
7%
popularity

Publisher

unverified uploader

A new Flutter project.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cupertino_icons, flutter

More

Packages that depend on artistic_ui