zefyr

zefyr.dart 986B

12345678910111213141516171819202122232425262728
  1. // Copyright (c) 2018, the Zefyr project authors. Please see the AUTHORS file
  2. // for details. All rights reserved. Use of this source code is governed by a
  3. // BSD-style license that can be found in the LICENSE file.
  4. /// Zefyr widgets and document model.
  5. ///
  6. /// To use, `import 'package:zefyr/zefyr.dart';`.
  7. library zefyr;
  8. export 'package:notus/notus.dart';
  9. export 'src/widgets/buttons.dart' hide HeadingButton, LinkButton;
  10. export 'src/widgets/code.dart';
  11. export 'src/widgets/common.dart';
  12. export 'src/widgets/controller.dart';
  13. export 'src/widgets/editable_text.dart';
  14. export 'src/widgets/editor.dart';
  15. export 'src/widgets/field.dart';
  16. export 'src/widgets/horizontal_rule.dart';
  17. export 'src/widgets/image.dart';
  18. export 'src/widgets/list.dart';
  19. export 'src/widgets/paragraph.dart';
  20. export 'src/widgets/quote.dart';
  21. export 'src/widgets/scaffold.dart';
  22. export 'src/widgets/selection.dart' hide SelectionHandleDriver;
  23. export 'src/widgets/theme.dart';
  24. export 'src/widgets/toolbar.dart';