Last updated:
0 purchases
flutter glass
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.8
copied to clipboard
Or install automatically using this command
$ flutter pub add flutter_glass
copied to clipboard
Super simple to use #
import 'package:flutter_glass/flutter_glass.dart';
...
GlassContainer(
children: [
Padding(
padding: const EdgeInsets.all(48.0),
child: Text("Sample Text"),
),
],
),
...
copied to clipboard
And bonus widget 🎉 #
import 'package:flutter_glass/flutter_glass.dart';
...
GradiantContainer(
child: // Something ...It can be a glass container ! ,
),
...
copied to clipboard
License #
This SDK is available under the MIT license.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.