Last updated:
0 purchases
flutter awesome containers
Flutter Awesome Containers #
Flutter Awesome container package used for gradient container with custom child in your Flutter app.
Installation #
Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
flutter_awesome_containers: ^0.0.1
copied to clipboard
Import the package and use it in your Flutter App.
import 'package:flutter_awesome_containers/flutter_awesome_containers.dart';
copied to clipboard
Example #
class FlutterAwesomeContainer extends StatefulWidget {
@override
State<FlutterAwesomeContainer> createState() => _FlutterAwesomeContainerState();
}
class _FlutterAwesomeContainerState extends State<FlutterAwesomeContainer> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: Colors.white,
body: Center(
child: FlutterFlutterAwesomeContainer(
colorOne: Colors.teal[900],
colorTwo: Colors.tealAccent,
onTap: (){
print("OnTap Event Fired");
},
child: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: const [
Text("Hello world",style: TextStyle(color: Colors.white,fontSize: 20),),
Text("This is your custom child container",style: TextStyle(color: Colors.white,fontSize: 14),),
],
)
),
),
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.