feat : new bottom sheet V1

This commit is contained in:
2025-04-28 12:29:13 +03:30
parent 74c56d1c10
commit e9b065062a
8 changed files with 134 additions and 61 deletions

9
tools/pubspecAll.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Navigate to the project root (assuming tools is one level below root)
cd "$(dirname "$0")/.."
# Find all pubspec.yaml files, print their directories, and run flutter pub get
#find . -name "pubspec.yaml" -exec sh -c 'echo "Running flutter pub get in $(dirname {}) 🙂🙂🙂🙂🙂"; cd $(dirname {}) ; flutter pub get' \;
find . -name "pubspec.yaml" -exec sh -c 'echo "Running flutter pub get in $(dirname {}) ⬆️🆙🆙🆙⬆️"; cd $(dirname {}) ; flutter pub upgrade' \;