Showing
5 changed files
with
215 additions
and
0 deletions
modal_bottom_sheet/.gitignore
0 → 100644
| 1 | +# Miscellaneous | ||
| 2 | +*.class | ||
| 3 | +*.log | ||
| 4 | +*.pyc | ||
| 5 | +*.swp | ||
| 6 | +.DS_Store | ||
| 7 | +.atom/ | ||
| 8 | +.buildlog/ | ||
| 9 | +.history | ||
| 10 | +.svn/ | ||
| 11 | + | ||
| 12 | +# IntelliJ related | ||
| 13 | +*.iml | ||
| 14 | +*.ipr | ||
| 15 | +*.iws | ||
| 16 | +.idea/ | ||
| 17 | + | ||
| 18 | +# Visual Studio Code related | ||
| 19 | +.classpath | ||
| 20 | +.project | ||
| 21 | +.settings/ | ||
| 22 | +.vscode/* | ||
| 23 | + | ||
| 24 | + | ||
| 25 | +# Flutter/Dart/Pub related | ||
| 26 | +**/doc/api/ | ||
| 27 | +.dart_tool/ | ||
| 28 | +.flutter-plugins | ||
| 29 | +.flutter-plugins-dependencies | ||
| 30 | +.lock | ||
| 31 | +.packages | ||
| 32 | +.pub-cache/ | ||
| 33 | +.pub/ | ||
| 34 | +build/ | ||
| 35 | + | ||
| 36 | +# Android related | ||
| 37 | +**/android/**/gradle-wrapper.jar | ||
| 38 | +**/android/.gradle | ||
| 39 | +**/android/captures/ | ||
| 40 | +**/android/gradlew | ||
| 41 | +**/android/gradlew.bat | ||
| 42 | +**/android/local.properties | ||
| 43 | +**/android/**/GeneratedPluginRegistrant.java | ||
| 44 | + | ||
| 45 | +# iOS/XCode related | ||
| 46 | +**/ios/**/*.mode1v3 | ||
| 47 | +**/ios/**/*.mode2v3 | ||
| 48 | +**/ios/**/*.moved-aside | ||
| 49 | +**/ios/**/*.pbxuser | ||
| 50 | +**/ios/**/*.perspectivev3 | ||
| 51 | +**/ios/**/*sync/ | ||
| 52 | +**/ios/**/.sconsign.dblite | ||
| 53 | +**/ios/**/.tags* | ||
| 54 | +**/ios/**/.vagrant/ | ||
| 55 | +**/ios/**/DerivedData/ | ||
| 56 | +**/ios/**/Icon? | ||
| 57 | +**/ios/**/Pods/ | ||
| 58 | +**/ios/**/.symlinks/ | ||
| 59 | +**/ios/**/profile | ||
| 60 | +**/ios/**/xcuserdata | ||
| 61 | +**/ios/.generated/ | ||
| 62 | +**/ios/Flutter/App.framework | ||
| 63 | +**/ios/Flutter/Flutter.framework | ||
| 64 | +**/ios/Flutter/Flutter.podspec | ||
| 65 | +**/ios/Flutter/Generated.xcconfig | ||
| 66 | +**/ios/Flutter/app.flx | ||
| 67 | +**/ios/Flutter/app.zip | ||
| 68 | +**/ios/Flutter/flutter_assets/ | ||
| 69 | +**/ios/Flutter/flutter_export_environment.sh | ||
| 70 | +**/ios/ServiceDefinitions.json | ||
| 71 | +**/ios/Runner/GeneratedPluginRegistrant.* | ||
| 72 | + | ||
| 73 | +# Exceptions to above rules. | ||
| 74 | +!**/ios/**/default.mode1v3 | ||
| 75 | +!**/ios/**/default.mode2v3 | ||
| 76 | +!**/ios/**/default.pbxuser | ||
| 77 | +!**/ios/**/default.perspectivev3 | ||
| 78 | +!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages | ||
| 79 | + | ||
| 80 | +**/macos/Flutter/ephemeral/ |
sheet/.gitignore
0 → 100644
| 1 | +# Miscellaneous | ||
| 2 | +*.class | ||
| 3 | +*.log | ||
| 4 | +*.pyc | ||
| 5 | +*.swp | ||
| 6 | +.DS_Store | ||
| 7 | +.atom/ | ||
| 8 | +.buildlog/ | ||
| 9 | +.history | ||
| 10 | +.svn/ | ||
| 11 | + | ||
| 12 | +# IntelliJ related | ||
| 13 | +*.iml | ||
| 14 | +*.ipr | ||
| 15 | +*.iws | ||
| 16 | +.idea/ | ||
| 17 | + | ||
| 18 | +# The .vscode folder contains launch configuration and tasks you configure in | ||
| 19 | +# VS Code which you may wish to be included in version control, so this line | ||
| 20 | +# is commented out by default. | ||
| 21 | +#.vscode/ | ||
| 22 | + | ||
| 23 | +# Flutter/Dart/Pub related | ||
| 24 | +**/doc/api/ | ||
| 25 | +.dart_tool/ | ||
| 26 | +.flutter-plugins | ||
| 27 | +.flutter-plugins-dependencies | ||
| 28 | +.lock | ||
| 29 | +.packages | ||
| 30 | +.pub-cache/ | ||
| 31 | +.pub/ | ||
| 32 | +build/ | ||
| 33 | + | ||
| 34 | +# Android related | ||
| 35 | +**/android/**/gradle-wrapper.jar | ||
| 36 | +**/android/.gradle | ||
| 37 | +**/android/captures/ | ||
| 38 | +**/android/gradlew | ||
| 39 | +**/android/gradlew.bat | ||
| 40 | +**/android/local.properties | ||
| 41 | +**/android/**/GeneratedPluginRegistrant.java | ||
| 42 | + | ||
| 43 | +# iOS/XCode related | ||
| 44 | +**/ios/**/*.mode1v3 | ||
| 45 | +**/ios/**/*.mode2v3 | ||
| 46 | +**/ios/**/*.moved-aside | ||
| 47 | +**/ios/**/*.pbxuser | ||
| 48 | +**/ios/**/*.perspectivev3 | ||
| 49 | +**/ios/**/*sync/ | ||
| 50 | +**/ios/**/.sconsign.dblite | ||
| 51 | +**/ios/**/.tags* | ||
| 52 | +**/ios/**/.vagrant/ | ||
| 53 | +**/ios/**/DerivedData/ | ||
| 54 | +**/ios/**/Icon? | ||
| 55 | +**/ios/**/Pods/ | ||
| 56 | +**/ios/**/.symlinks/ | ||
| 57 | +**/ios/**/profile | ||
| 58 | +**/ios/**/xcuserdata | ||
| 59 | +**/ios/.generated/ | ||
| 60 | +**/ios/Flutter/App.framework | ||
| 61 | +**/ios/Flutter/Flutter.framework | ||
| 62 | +**/ios/Flutter/Flutter.podspec | ||
| 63 | +**/ios/Flutter/Generated.xcconfig | ||
| 64 | +**/ios/Flutter/app.flx | ||
| 65 | +**/ios/Flutter/app.zip | ||
| 66 | +**/ios/Flutter/flutter_assets/ | ||
| 67 | +**/ios/Flutter/flutter_export_environment.sh | ||
| 68 | +**/ios/ServiceDefinitions.json | ||
| 69 | +**/ios/Runner/GeneratedPluginRegistrant.* | ||
| 70 | + | ||
| 71 | +# Exceptions to above rules. | ||
| 72 | +!**/ios/**/default.mode1v3 | ||
| 73 | +!**/ios/**/default.mode2v3 | ||
| 74 | +!**/ios/**/default.pbxuser | ||
| 75 | +!**/ios/**/default.perspectivev3 | ||
| 76 | +!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages |
sheet/example/.gitignore
0 → 100644
| 1 | +# Miscellaneous | ||
| 2 | +*.class | ||
| 3 | +*.log | ||
| 4 | +*.pyc | ||
| 5 | +*.swp | ||
| 6 | +.DS_Store | ||
| 7 | +.atom/ | ||
| 8 | +.buildlog/ | ||
| 9 | +.history | ||
| 10 | +.svn/ | ||
| 11 | + | ||
| 12 | +# IntelliJ related | ||
| 13 | +*.iml | ||
| 14 | +*.ipr | ||
| 15 | +*.iws | ||
| 16 | +.idea/ | ||
| 17 | + | ||
| 18 | +# The .vscode folder contains launch configuration and tasks you configure in | ||
| 19 | +# VS Code which you may wish to be included in version control, so this line | ||
| 20 | +# is commented out by default. | ||
| 21 | +#.vscode/ | ||
| 22 | + | ||
| 23 | +# Flutter/Dart/Pub related | ||
| 24 | +**/doc/api/ | ||
| 25 | +**/ios/Flutter/.last_build_id | ||
| 26 | +.dart_tool/ | ||
| 27 | +.flutter-plugins | ||
| 28 | +.flutter-plugins-dependencies | ||
| 29 | +.packages | ||
| 30 | +.pub-cache/ | ||
| 31 | +.pub/ | ||
| 32 | +/build/ | ||
| 33 | + | ||
| 34 | +# Web related | ||
| 35 | +lib/generated_plugin_registrant.dart | ||
| 36 | + | ||
| 37 | +# Symbolication related | ||
| 38 | +app.*.symbols | ||
| 39 | + | ||
| 40 | +# Obfuscation related | ||
| 41 | +app.*.map.json | ||
| 42 | + | ||
| 43 | +# Android Studio will place build artifacts here | ||
| 44 | +/android/app/debug | ||
| 45 | +/android/app/profile | ||
| 46 | +/android/app/release |
-
Please register or login to post a comment