#abhishek Containers

abhishek container package lets you add a beautiful property container to your Flutter app.

Installation

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  abhishek_container1: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:abhishek_container1/abhishek_container1.dart';

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();
  }
}