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

discontinuedreplaced by: navand
outdated

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 String? key}) : super(key: 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