YelpExplorer is a multiplatform project that shows a list of businesses, their details and latest reviews using Yelp's API.
I originally created this project to learn about GraphQL but since Yelp is also serving its data with a REST API, I thought it would be a great opportunity to showcase the power of Clean Architecture when it comes to being able to swap one data layer for another without having to modify the domain and presentation layers.
I then thought it would be a great experience to port the Android project to Flutter and ReactNative to learn more about all the different technologies that exist to build multiplatform applications.
This project is available in:
Compose/Kotlin
Flutter/Dart
ReactNative/TypeScript
Business List | Business Details |
---|---|
- Multiplatform project using Flutter and Dart
- Modern architecture (Clean Architecture, BLoC, Service Locator)
- Testing
- Material design
- Continuous Integration with GitHub Actions
- Project management with GitHub Project Board
- Tech Stack
- Architecture
- Clean Architecture
If you want to build and run this project on physical device, a simulator/emulator, or a web browser, you need to obtain your own API key from Yelp and provide it to the app.
- Request your API key: https://www.yelp.com/developers/documentation/v3/authentication
- Create a json file
config/app_config.json
located at the root of the project and add your API key like this:{ "api_key": "YOUR_API_KEY" }
This project allows you to either use the GraphQL API or the REST API to retrieve data.
To switch between one or the other, you can change the value of USE_GRAPHQL
in const.dart
Copyright 2020-Present Matthieu Coisne
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.