Skip to content
forked from Hawmex/dawn

Dawn is a Dart web package for developing UIs in a pattern similar to Flutter.

License

Notifications You must be signed in to change notification settings

FlutterPackages/dawn

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dawn

Description

Dawn is a Dart web package for developing UIs in a pattern similar to Flutter.

Links

Example

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'}),
    );
  }
}

About

Dawn is a Dart web package for developing UIs in a pattern similar to Flutter.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 96.4%
  • HTML 2.3%
  • Batchfile 1.3%