Minimalist stylized widgets for diverse use.

Features

Some stylized widgets:

  • Text fields;
  • Buttons;
  • App Bars;
  • Cards;
  • and others...

Usage

You can use this package in any flutter project.

import 'package:minimalist_components/minimalist_components.dart';

...

MinimalistButton(
  child: const Text('Next page'),
  onPressed: () => Navigator.push(
    context,
    MinimalistAnimatedPageRoute.slide(
      screen: const PageTwo(),
    ),
  ),
),

...