forked from flutter/samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Flutter 3.24 update, Add CarouselView examples to demo 3 (flutter#2377)
This PR is to include `CarouselView` to M3 demo app. https://github.com/user-attachments/assets/7db76c06-aa7e-4461-9baa-51fd5c4e6b38 ## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] All existing and new tests are passing. --------- Co-authored-by: Eric Windmill <[email protected]>
- Loading branch information
1 parent
5ea3636
commit 2fc80aa
Showing
6 changed files
with
146 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
flutter doctor -v | ||
|
||
declare -ar PROJECT_NAMES=( | ||
"add_to_app/android_view/flutter_module_using_plugin" | ||
"add_to_app/books/flutter_module_books" | ||
"add_to_app/fullscreen/flutter_module" | ||
"add_to_app/multiple_flutters/multiple_flutters_module" | ||
"add_to_app/plugin/flutter_module_using_plugin" | ||
"add_to_app/prebuilt_module/flutter_module" | ||
"ai_recipe_generation" | ||
"analysis_defaults" | ||
"android_splash_screen" | ||
"animations" | ||
"asset_transformation" | ||
"background_isolate_channels" | ||
"code_sharing/client" | ||
"code_sharing/server" | ||
"code_sharing/shared" | ||
"context_menus" | ||
"deeplink_store_example" | ||
"desktop_photo_search/fluent_ui" | ||
"desktop_photo_search/material" | ||
"dynamic_theme" | ||
"experimental/federated_plugin/federated_plugin" | ||
"experimental/federated_plugin/federated_plugin/example" | ||
"experimental/federated_plugin/federated_plugin_macos" | ||
"experimental/federated_plugin/federated_plugin_platform_interface" | ||
"experimental/federated_plugin/federated_plugin_web" | ||
"experimental/federated_plugin/federated_plugin_windows" | ||
"experimental/pedometer" | ||
"experimental/pedometer/example" | ||
"experimental/varfont_shader_puzzle" | ||
"experimental/web_dashboard" | ||
"flutter_maps_firestore" | ||
"form_app" | ||
"game_template" | ||
"gemini_tasks" | ||
"google_maps" | ||
"infinite_list" | ||
"ios_app_clip" | ||
"isolate_example" | ||
"material_3_demo" | ||
"navigation_and_routing" | ||
"place_tracker" | ||
"platform_channels" | ||
"platform_design" | ||
"platform_view_swift" | ||
"provider_counter" | ||
"provider_shopper" | ||
"simple_shader" | ||
"simplistic_calculator" | ||
"simplistic_editor" | ||
"testing_app" | ||
"veggieseasons" | ||
"web_embedding/element_embedding_demo" | ||
"web/_tool" | ||
"web/samples_index" | ||
) | ||
|
||
echo "--- Running flutter clean and flutter pub get for each sample ---" | ||
|
||
for PROJECT_NAME in "${PROJECT_NAMES[@]}" | ||
do | ||
echo "== Cleaning '${PROJECT_NAME}' with Flutter clean ==" | ||
pushd "${PROJECT_NAME}" | ||
|
||
# run `flutter clean` for project | ||
flutter clean | ||
|
||
# Grab packages. | ||
flutter pub get | ||
|
||
popd | ||
done | ||
|
||
echo "--- Success ---" |