dawn 2.1.0 copy "dawn: ^2.1.0" to clipboard
dawn: ^2.1.0 copied to clipboard

discontinuedreplaced by: navand

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

dawn #

Description #

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

Example #

import 'package:dawn/dawn.dart';

void main() => runApp(const App());

class App extends StatelessWidget {
  const App({final super.key});

  @override
  Widget build(final Context context) {
    return const Text(
      'Hello World!',
      style: Style({'font-weight': 'bold'}),
    );
  }
}
13
likes
0
pub points
0%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on dawn