advanced_widgets 1.0.1 copy "advanced_widgets: ^1.0.1" to clipboard
advanced_widgets: ^1.0.1 copied to clipboard

More widgets that will help you make modern apps

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

3
likes
130
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

More widgets that will help you make modern apps

Repository (GitHub)

Topics

#widget

Documentation

API reference

License

MIT (license)

Dependencies

flutter, path

More

Packages that depend on advanced_widgets