Demo Package

Demo Project its just for learning purpose

Installation

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

Example

There are a number of properties that you can modify:

  • text

class MyScreen extends StatelessWidget {
  const MyScreen({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: const MyWidget(
          text: 'Hello World',
        ),
      ),
    );
  }
}

Next Goals

  • x Create a demo Project for all who is new in flutter and try to learn new thing in flutter.

Libraries

demo_package_10