├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── .gitignore ├── .metadata ├── README.md ├── SponsoredByMyTextAi.png ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── dev │ │ │ │ │ └── glasberg │ │ │ │ │ └── example_xaxa │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── lib │ ├── images │ │ ├── buttonBar.png │ │ ├── columnSuper.png │ │ ├── fitHorizontally.png │ │ ├── non_uniform_borders.png │ │ ├── rowSuperWithFitHorizontally.jpg │ │ ├── rowXRowSuperComparison.png │ │ ├── sideBySide.png │ │ ├── sideBySideComparison.gif │ │ ├── wrapFit1.png │ │ ├── wrapFit2.png │ │ ├── wrapFit3.png │ │ ├── wrapFit4.png │ │ └── wrapType.jpg │ ├── main_box.dart │ ├── main_button_and_circle_button.dart │ ├── main_button_bar_super.dart │ ├── main_capture_gestures.dart │ ├── main_column_removing_zero_height.dart │ ├── main_column_row_gestures.dart │ ├── main_column_super.dart │ ├── main_column_super_playground.dart │ ├── main_decorated_box.dart │ ├── main_delayed.dart │ ├── main_detect_scroll.dart │ ├── main_fit_horizontally.dart │ ├── main_fit_horizontally_baseline.dart │ ├── main_global_keys.dart │ ├── main_non_uniform_outline_input_border.dart │ ├── main_non_uniform_rounded_rectangle_border.dart │ ├── main_normalized_overflow_box.dart │ ├── main_row_spacer.dart │ ├── main_row_super.dart │ ├── main_row_super_alignment.dart │ ├── main_row_super_fill.dart │ ├── main_row_super_playground.dart │ ├── main_row_super_with_fit_horizontally.dart │ ├── main_row_with_row_super_comparison.dart │ ├── main_show_dialog_super.dart │ ├── main_side_by_side.dart │ ├── main_side_by_side_comparison.dart │ ├── main_text_one_line.dart │ ├── main_timer_builder.dart │ ├── main_wrap_super.dart │ └── main_wrap_super_fit.dart └── pubspec.yaml ├── lib ├── assorted_layout_widgets.dart └── src │ ├── box.dart │ ├── box_animating_width.dart │ ├── button.dart │ ├── button_bar_super.dart │ ├── capture_gestures.dart │ ├── circle_button.dart │ ├── column_super.dart │ ├── delayed.dart │ ├── detect_scroll.dart │ ├── fit_horizontally.dart │ ├── global_keys.dart │ ├── keyboard_dismiss.dart │ ├── mask_function_text_input_formatter.dart │ ├── minimum_raggedness.dart │ ├── non_uniform_outline_input_border.dart │ ├── non_uniform_rounded_rectangle_border.dart │ ├── normalized_overflow_box.dart │ ├── pad.dart │ ├── row_super.dart │ ├── scroll_shadow.dart │ ├── show_dialog_super.dart │ ├── side_by_side.dart │ ├── text_one_line.dart │ ├── time_builder.dart │ └── wrap_super.dart ├── pubspec.yaml └── test └── src ├── global_keys_test.dart └── minimum_raggedness_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/README.md -------------------------------------------------------------------------------- /example/SponsoredByMyTextAi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/SponsoredByMyTextAi.png -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/dev/glasberg/example_xaxa/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/kotlin/dev/glasberg/example_xaxa/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/lib/images/buttonBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/buttonBar.png -------------------------------------------------------------------------------- /example/lib/images/columnSuper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/columnSuper.png -------------------------------------------------------------------------------- /example/lib/images/fitHorizontally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/fitHorizontally.png -------------------------------------------------------------------------------- /example/lib/images/non_uniform_borders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/non_uniform_borders.png -------------------------------------------------------------------------------- /example/lib/images/rowSuperWithFitHorizontally.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/rowSuperWithFitHorizontally.jpg -------------------------------------------------------------------------------- /example/lib/images/rowXRowSuperComparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/rowXRowSuperComparison.png -------------------------------------------------------------------------------- /example/lib/images/sideBySide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/sideBySide.png -------------------------------------------------------------------------------- /example/lib/images/sideBySideComparison.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/sideBySideComparison.gif -------------------------------------------------------------------------------- /example/lib/images/wrapFit1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/wrapFit1.png -------------------------------------------------------------------------------- /example/lib/images/wrapFit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/wrapFit2.png -------------------------------------------------------------------------------- /example/lib/images/wrapFit3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/wrapFit3.png -------------------------------------------------------------------------------- /example/lib/images/wrapFit4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/wrapFit4.png -------------------------------------------------------------------------------- /example/lib/images/wrapType.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/images/wrapType.jpg -------------------------------------------------------------------------------- /example/lib/main_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_box.dart -------------------------------------------------------------------------------- /example/lib/main_button_and_circle_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_button_and_circle_button.dart -------------------------------------------------------------------------------- /example/lib/main_button_bar_super.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_button_bar_super.dart -------------------------------------------------------------------------------- /example/lib/main_capture_gestures.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_capture_gestures.dart -------------------------------------------------------------------------------- /example/lib/main_column_removing_zero_height.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_column_removing_zero_height.dart -------------------------------------------------------------------------------- /example/lib/main_column_row_gestures.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_column_row_gestures.dart -------------------------------------------------------------------------------- /example/lib/main_column_super.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_column_super.dart -------------------------------------------------------------------------------- /example/lib/main_column_super_playground.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_column_super_playground.dart -------------------------------------------------------------------------------- /example/lib/main_decorated_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_decorated_box.dart -------------------------------------------------------------------------------- /example/lib/main_delayed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_delayed.dart -------------------------------------------------------------------------------- /example/lib/main_detect_scroll.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_detect_scroll.dart -------------------------------------------------------------------------------- /example/lib/main_fit_horizontally.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_fit_horizontally.dart -------------------------------------------------------------------------------- /example/lib/main_fit_horizontally_baseline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_fit_horizontally_baseline.dart -------------------------------------------------------------------------------- /example/lib/main_global_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_global_keys.dart -------------------------------------------------------------------------------- /example/lib/main_non_uniform_outline_input_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_non_uniform_outline_input_border.dart -------------------------------------------------------------------------------- /example/lib/main_non_uniform_rounded_rectangle_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_non_uniform_rounded_rectangle_border.dart -------------------------------------------------------------------------------- /example/lib/main_normalized_overflow_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_normalized_overflow_box.dart -------------------------------------------------------------------------------- /example/lib/main_row_spacer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_row_spacer.dart -------------------------------------------------------------------------------- /example/lib/main_row_super.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_row_super.dart -------------------------------------------------------------------------------- /example/lib/main_row_super_alignment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_row_super_alignment.dart -------------------------------------------------------------------------------- /example/lib/main_row_super_fill.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_row_super_fill.dart -------------------------------------------------------------------------------- /example/lib/main_row_super_playground.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_row_super_playground.dart -------------------------------------------------------------------------------- /example/lib/main_row_super_with_fit_horizontally.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_row_super_with_fit_horizontally.dart -------------------------------------------------------------------------------- /example/lib/main_row_with_row_super_comparison.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_row_with_row_super_comparison.dart -------------------------------------------------------------------------------- /example/lib/main_show_dialog_super.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_show_dialog_super.dart -------------------------------------------------------------------------------- /example/lib/main_side_by_side.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_side_by_side.dart -------------------------------------------------------------------------------- /example/lib/main_side_by_side_comparison.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_side_by_side_comparison.dart -------------------------------------------------------------------------------- /example/lib/main_text_one_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_text_one_line.dart -------------------------------------------------------------------------------- /example/lib/main_timer_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_timer_builder.dart -------------------------------------------------------------------------------- /example/lib/main_wrap_super.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_wrap_super.dart -------------------------------------------------------------------------------- /example/lib/main_wrap_super_fit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/lib/main_wrap_super_fit.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /lib/assorted_layout_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/assorted_layout_widgets.dart -------------------------------------------------------------------------------- /lib/src/box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/box.dart -------------------------------------------------------------------------------- /lib/src/box_animating_width.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/box_animating_width.dart -------------------------------------------------------------------------------- /lib/src/button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/button.dart -------------------------------------------------------------------------------- /lib/src/button_bar_super.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/button_bar_super.dart -------------------------------------------------------------------------------- /lib/src/capture_gestures.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/capture_gestures.dart -------------------------------------------------------------------------------- /lib/src/circle_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/circle_button.dart -------------------------------------------------------------------------------- /lib/src/column_super.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/column_super.dart -------------------------------------------------------------------------------- /lib/src/delayed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/delayed.dart -------------------------------------------------------------------------------- /lib/src/detect_scroll.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/detect_scroll.dart -------------------------------------------------------------------------------- /lib/src/fit_horizontally.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/fit_horizontally.dart -------------------------------------------------------------------------------- /lib/src/global_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/global_keys.dart -------------------------------------------------------------------------------- /lib/src/keyboard_dismiss.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/keyboard_dismiss.dart -------------------------------------------------------------------------------- /lib/src/mask_function_text_input_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/mask_function_text_input_formatter.dart -------------------------------------------------------------------------------- /lib/src/minimum_raggedness.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/minimum_raggedness.dart -------------------------------------------------------------------------------- /lib/src/non_uniform_outline_input_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/non_uniform_outline_input_border.dart -------------------------------------------------------------------------------- /lib/src/non_uniform_rounded_rectangle_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/non_uniform_rounded_rectangle_border.dart -------------------------------------------------------------------------------- /lib/src/normalized_overflow_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/normalized_overflow_box.dart -------------------------------------------------------------------------------- /lib/src/pad.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/pad.dart -------------------------------------------------------------------------------- /lib/src/row_super.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/row_super.dart -------------------------------------------------------------------------------- /lib/src/scroll_shadow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/scroll_shadow.dart -------------------------------------------------------------------------------- /lib/src/show_dialog_super.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/show_dialog_super.dart -------------------------------------------------------------------------------- /lib/src/side_by_side.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/side_by_side.dart -------------------------------------------------------------------------------- /lib/src/text_one_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/text_one_line.dart -------------------------------------------------------------------------------- /lib/src/time_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/time_builder.dart -------------------------------------------------------------------------------- /lib/src/wrap_super.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/lib/src/wrap_super.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/src/global_keys_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/test/src/global_keys_test.dart -------------------------------------------------------------------------------- /test/src/minimum_raggedness_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcglasberg/assorted_layout_widgets/HEAD/test/src/minimum_raggedness_test.dart --------------------------------------------------------------------------------