A simple Flutter package that provides a Hello World widget with modern Material Design UI.
- 🎨 HelloWorldApp - Complete Material App with Hello World UI
- 📱 HelloWorldPage - Standalone Hello World widget
- 🎯 Modern Design - Material Design 3 theming
- 🦋 Flutter Dash - Includes Flutter mascot icon
- 📦 Easy Integration - Simple to add to any Flutter project
Add this package to your pubspec.yaml:
dependencies:
helloworld: ^1.0.0import 'package:flutter/material.dart';
import 'package:helloworld/helloworld.dart';
void main() {
runApp(const HelloWorldApp());
}import 'package:flutter/material.dart';
import 'package:helloworld/helloworld.dart';
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: HelloWorldPage(), // Add to your existing app
);
}
}See the /example folder for a complete example app.
flutter testflutter analyzedart format .- Fork the repository
- Create your feature branch
- Make your changes
- Add tests for your changes
- Ensure all tests pass
- Create a Pull Request
This package includes automated publishing to pub.dev via GitHub Actions. See PUBLISHING.md for setup instructions.
dart pub publish --dry-run # Test publishing
dart pub publish # Publish to pub.devMIT License - see LICENSE file for details.