Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 796 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 796 Bytes

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