1 Star 0 Fork 0

coolan2013/flutter-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
analytics_integration
bottom_sheet
covid19_mobile_app
dropdown_button
enabling_splash_screen
expense_planner
firebase_crash_reporting
google_signin
grid_layout
handling_routes
image_editor
image_from_network
img
infinite_list
load_local_image
load_local_json
navigation_drawer
persist_key_value
push_notifcations
simple_material_app
stateful_widget
stateless_widgets
tip_calculator
todo_list_using_provider
unit_testing
using_alert_dialog
using_bottom_nav_bar
using_custom_fonts
using_edittext
using_firebase_db
using_gradient
using_http_get
using_interactiveviewer
using_listview
using_listwheelscrollview
using_snackbar
using_stepper
using_tabs
using_theme
view_pdf_file
.gitignore
LICENSE.txt
README.md
delete_build_folder.sh
get_packages.sh
update_gradle_wrapper.sh
克隆/下载
delete_build_folder.sh 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
# Copyright 2018 Nishant Srivastava
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ______________________________________________________________________
# Dependency: trash cli tool
# >> Install: brew install trash
#
# Call as
# ./delete_build_folder.sh
# ______________________________________________________________________
echo " 🗑 Deleting build directories..."
# Find all directories with name "build" inside the current directory, recursively
for FOUND_BUILD_DIR in $(find . -type d -name "build");
do
# Run the trash command on found build directory
trash $FOUND_BUILD_DIR
done
echo " ✔️ Done."
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/coolan2013/flutter-examples.git
git@gitee.com:coolan2013/flutter-examples.git
coolan2013
flutter-examples
flutter-examples
develop

搜索帮助