Skip to content

Commit

Permalink
Move layouts in /src (#293)
Browse files Browse the repository at this point in the history
Fixes #289
  • Loading branch information
Jupi007 committed Oct 12, 2022
1 parent 2665e8a commit 824fbd9
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import '../../constants.dart';
import '../constants.dart';
import 'yaru_detail_page.dart';
import 'yaru_landscape_layout.dart';
import 'yaru_master_detail_theme.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:yaru/yaru.dart';

import '../../constants.dart';
import '../constants.dart';

@immutable
class YaruMasterDetailThemeData with Diagnosticable {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'package:flutter/material.dart';

import '../../constants.dart';
import '../constants.dart';

const double _kScrollbarThickness = 8.0;
const double _kScrollbarMargin = 2.0;
Expand Down
File renamed without changes.
File renamed without changes.
18 changes: 9 additions & 9 deletions lib/yaru_widgets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ export 'src/controls/yaru_toggle_button_theme.dart';
export 'src/dialogs/yaru_dialog_title.dart';
// Extensions
export 'src/extensions/border_radius_extension.dart';
// Pages layouts
export 'src/pages/layouts/yaru_compact_layout.dart';
export 'src/pages/layouts/yaru_compact_layout_theme.dart';
export 'src/pages/layouts/yaru_detail_page.dart';
export 'src/pages/layouts/yaru_master_detail_page.dart';
export 'src/pages/layouts/yaru_master_detail_theme.dart';
export 'src/pages/layouts/yaru_master_tile.dart';
export 'src/pages/layouts/yaru_navigation_rail.dart';
export 'src/pages/layouts/yaru_navigation_rail_item.dart';
// Layouts
export 'src/layouts/yaru_compact_layout.dart';
export 'src/layouts/yaru_compact_layout_theme.dart';
export 'src/layouts/yaru_detail_page.dart';
export 'src/layouts/yaru_master_detail_page.dart';
export 'src/layouts/yaru_master_detail_theme.dart';
export 'src/layouts/yaru_master_tile.dart';
export 'src/layouts/yaru_navigation_rail.dart';
export 'src/layouts/yaru_navigation_rail_item.dart';
// Pages
export 'src/pages/yaru_section.dart';
export 'src/pages/yaru_tabbed_page.dart';
Expand Down

0 comments on commit 824fbd9

Please sign in to comment.