Dawn is a Dart web package for developing UIs in a pattern similar to Flutter.
- GitHub Repository
- Pub Page
- Documentation
- An Example Weather SPA created with Dawn
import 'package:dawn/dawn.dart';
void main() => runApp(const App());
class App extends StatelessWidget {
const App({final String? key}) : super(key: key);
@override
Widget build(final Context context) {
return const Text(
'Hello World!',
style: Style({'font-weight': 'bold'}),
);
}
}