customize 2.1.2 copy "customize: ^2.1.2" to clipboard
customize: ^2.1.2 copied to clipboard

discontinued

Customize is awesome Flutter package to create beautiful UI with handy dart methods.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: SafeArea(
          child: Center(
            child: Padding(
              padding: const EdgeInsets.symmetric(horizontal: 32),
              child: Column(
                mainAxisAlignment: MainAxisAlignment.center,
                children: <Widget>[
                  FxButton.primary(text: 'text', onPressed: () {})
                ],
              ),
            ),
          ),
        ),
      ),
    );
  }
}
21
likes
110
pub points
0%
popularity

Publisher

unverified uploader

Customize is awesome Flutter package to create beautiful UI with handy dart methods.

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

unknown (LICENSE)

Dependencies

flutter, get

More

Packages that depend on customize