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

outdated

This is a custom ui package which will allow us to make creative ui in less time and more efficiency.

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

5
likes
0
pub points
6%
popularity

Publisher

unverified uploader

This is a custom ui package which will allow us to make creative ui in less time and more efficiency.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cupertino_icons, flutter

More

Packages that depend on artistic_ui