mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
- Added the color scheme schematic from Material Theme Builder aligning how colors are displayed here and in documentation across Android and Figma. - On desktop, individual colors can be copied to the clipboard - View adapts from the existing single column view to the new schematic at 500dp width. ### Before: <img width="1727" alt="Screenshot 2024-09-12 at 2 40 15 PM" src="https://github.com/user-attachments/assets/37423d79-174a-4691-b0e1-8f18c947550a"> ### After:   ## 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. If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. <!-- Links --> [Flutter Style Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md [Contributors Guide]: https://github.com/flutter/samples/blob/main/CONTRIBUTING.md --------- Co-authored-by: Eric Windmill <ewindmill@google.com>
71 lines
2.0 KiB
Bash
Executable File
71 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
DIR="${BASH_SOURCE%/*}"
|
|
source "$DIR/flutter_ci_script_shared.sh"
|
|
|
|
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"
|
|
# TODO @ewindmill -- Color.red is deprecated and should be Color.r (same for green and blue)
|
|
# "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"
|
|
)
|
|
|
|
ci_projects "beta" "${PROJECT_NAMES[@]}"
|
|
|
|
echo "-- Success --"
|