This package makes making new apps easier by providing Modern and Useful widgets

Features

BlurredAppBar

  • Makes an appbar blur anything behind it ModernElevatedButton
  • A modern button GradientText
  • Adds a gradient to text GradientContainer
  • Adds a gradient to a container GradientOverlay
  • Adds a gradient to whatever child it has

Getting started

You need to have the dart:ui package to use the blurred appbar

Usage

How to the BlurredAppBar:

extendBody: true,
appBar: BlurredAppBar(
  appBar: AppBar(
    backgroundColor: Color.fromARGB(0, 158, 158, 158),
    title: Text(
      widget.title,
      style: TextStyle(color: const Color.fromARGB(255, 0, 0, 0)),
    ),
  ),
  filter: ImageFilter.blur(sigmaX: 50, sigmaY: 50),
),

Additional information

You can find more info in the example tab

Libraries

advanced_widgets