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

outdated

A new Flutter project.

Artistic UI #

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

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
6%
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