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

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

example/main.dart

import 'package:artistic_ui/artistic_ui.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: CustomButton(
          onPressed: () {},
          text: "This is your text",
        ),
      ),
    );
  }
}
5
likes
150
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

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

cupertino_icons, flutter

More

Packages that depend on artistic_ui