Last updated:
0 purchases
abhishek container1
#abhishek Containers
abhishek container package lets you add a beautiful property container to your Flutter app.
Installation #
Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
abhishek_container1: ^0.0.1
copied to clipboard
Import the package and use it in your Flutter App.
import 'package:abhishek_container1/abhishek_container1.dart';
copied to clipboard
class abhishek_container extends StatefulWidget {
const abhishek_container({Key? key}) : super(key: key);
@override
_abhishek_containerState createState() => _abhishek_containerState();
}
class _abhishek_containerState extends State<abhishek_container> {
@override
Widget build(BuildContext context) {
return Container();
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.