my_flutter_package_chintan 0.0.4
my_flutter_package_chintan: ^0.0.4 copied to clipboard
A temporary Flutter package for testing and experimentation.This package is created for testing and experimentation purposes only. It may contain code or features that are not intended for production [...]
example/lib/main.dart
import 'package:flutter/material.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello World!'),
),
),
);
}
}