0 purchases
demo package 10
Demo Package #
Demo Project its just for learning purpose
Installation #
Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
demo_package: ^0.0.1
copied to clipboard
Import the package and use it in your Flutter App.
import 'package:demo_package_10/demo_package_10.dart';
copied to clipboard
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',
),
),
);
}
}
copied to clipboard
Next Goals #
✅ Create a demo Project for all who is new in flutter and try to learn new thing in flutter.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.