Flutter Glass plugin
A flutter package that adds the possibility of making glass containers to your app.
Installation
To use this plugin, add flutter_glass in your pubspec.yaml
dependencies:
flutter_glass: ^0.0.7
Or install automatically using this command
$ flutter pub add flutter_glass
Super simple to use
import 'package:flutter_glass/flutter_glass.dart';
...
GlassContainer(
height: 200,
width: 360,
children: [
Text("Sample Text"),
],
),
...
And bonus widget 🎉
import 'package:flutter_glass/flutter_glass.dart';
...
GradiantContainer(
child: // Something ...It can be a glass container ! ,
),
...
License
This SDK is available under the MIT license.