https://github.com/jaredsburrows/flutter-gif-search
Flutter Gif Search
https://github.com/jaredsburrows/flutter-gif-search
android flutter ios java kotlin object swift
Last synced: 5 months ago
JSON representation
Flutter Gif Search
- Host: GitHub
- URL: https://github.com/jaredsburrows/flutter-gif-search
- Owner: jaredsburrows
- License: apache-2.0
- Created: 2019-04-02T05:57:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-25T18:58:55.000Z (over 1 year ago)
- Last Synced: 2025-04-12T12:25:03.859Z (about 1 year ago)
- Topics: android, flutter, ios, java, kotlin, object, swift
- Language: Dart
- Homepage: https://jaredsburrows.github.io/flutter-gif-search
- Size: 33.2 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gif Search using Flutter
[](http://www.apache.org/licenses/LICENSE-2.0)
[](https://github.com/jaredsburrows/flutter-gif-search/actions/workflows/build.yml)
[](https://twitter.com/jaredsburrows)
Gif List Grid Example using [Flutter](https://flutter.dev/)!
### Updates
**Flutter**
```shell
rm -f ios/Podfile.lock
rm -f pubspec.lock
flutter upgrade
flutter pub get
flutter pub upgrade
```
**Build All**
```shell
flutter build apk --debug
flutter build ios --debug --no-codesign
flutter build web
```
## Build the App
**Android**
```shell
flutter build apk
```
**iOS**
```shell
flutter build ios
```
## Install the App
```shell
flutter install
```
## Run the App
```shell
flutter run
```
## Testing
```shell
flutter test
```
## Local Debug Run
```shell
rm -f pubspec.lock && \
flutter clean && \
flutter upgrade && \
flutter pub get && \
flutter pub upgrade --major-versions && \
dart run build_runner build --delete-conflicting-outputs && \
osv-scanner -r . && \
dart format . && \
dart fix --dry-run && \
dart fix --apply && \
flutter analyze && \
flutter test --platform=chrome --test-randomize-ordering-seed=random && \
flutter build web && \
flutter build ios --debug --no-codesign && \
flutter build apk --debug
```
## License
```
Copyright (C) 2019 Jared Burrows
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
https://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.
```
