Multiplatform Application Travel virtually and discover interesting destinations

Virtual Traveller

Search for flights and deep dive into large offers of travelling destinations. Discover recommended and popular places. Hop on on the virtual mode to simulate travelling immediately to your desired destination and learn more about it, including interesting information and points of interests! 🚀

Index

Previews

How to run

  1. Clone this repository

  2. Fetch packages:
    flutter pub get

  3. Run freezed and json_serializable code generators:
    flutter pub run build_runner build --delete-conflicting-outputs
    Automatically rebuild on changes with:
    flutter pub run build_runner watch

  4. Run on the device:
    flutter run (run in Profile mode if you want to test the performance)
    Run on web:
    flutter run -d web
    Run with flag on web with better performance (experimental):
    flutter run -d web --release --dart-define=FLUTTER_WEB_USE_SKIA=true

    If you want to use remote APIs instead of local mocked data, you need to obtain API key(s).
    Obtain the Amadeus Travel API key here.
    Then:

    • place the key to this file: lib/data/data_providers/remote/secrets.dart
    • set quotaSaveMode to false in lib/utils/debug_options.dart

Idea

I wanted to make a flight searching app with interesting suggestions, fully from the scratch. However, due to the current situation with the pandemic, many countries are restricted for some citizens so travelling there isn’t possible. This app has virtual travelling mode, which simulates the travelling here, displays interesting information about the desired location, including picture, points of interests and etc. There’s a possibility to save the locations, so you can check them out later!

Powered by the Amadeus for Developers API, which fits best for this use and offers also free monthly quota for testing! Amadeus Travel APIs connect you to the richest information in the travel industry.

Visualizing the flow of the app

visualizing the flow of the app

App Architecture

Using the bloc library allows us to separate our application into three layers:

  • Presentation
  • Business Logic
  • Data
    • Repository
    • Data Provider
    • Models

State management

There’s no unique rule on what to choose because it always depends on many criteria. When it came to deciding on which state management approach to use in my case, I was deciding between Provider and bloc library. Bloc library is already dependant on Provider package so it is fairly similar in terms of a dependency injection (DI) (a single instance of a Cubit or Bloc can be provided to all of the widgets within a subtree). Read more here about bloc library and Provider.

The reasons why I decided to use the bloc library in my case were following:

  • use of the reactive streams, which goes well together with BLoC pattern
  • easy and reliable tests via bloc_test library, which is based on Mockito
  • it isn’t only a state management library, but it also helps implement the BLoC (Business Logic Component) design pattern

TO:DO list

Basics:

  • [ ] Features
    • [ ] Splash screen
    • [ ] Intro slider on the first app launch
    • [ ] Home Page Features
      • [x] Change departure location
      • [ ] Quick search
        • [x] One-Way flights
        • [ ] Destinations
      • [x] Discover most popular / booked travelling destinations based on the current location
      • [ ] Recommended destinations based on search history
    • [ ] Flight Searching Page Features
      • [ ] View search history
      • [ ] Search by
        • [ ] Type of the way
          • [ ] One-Way
          • [ ] Round Trip
          • [ ] Multi City
        • [ ] Dates
          • [ ] Departure
          • [ ] Return
        • [ ] Passengers
          • [ ] Adults
          • [ ] Kids
          • [ ] Infants
    • [ ] Flight Result Page Features
      • [ ] Switch departure and destination in the search
      • [ ] Display quick search query info details
      • [ ] View more about the destination
      • [ ] Sort by
        • [ ] Price
        • [ ] Length
        • [ ] Number of stops
      • [ ] Flight offer details
        • [ ] From - To
        • [ ] Departure - Arrival date
        • [ ] Flight length
        • [ ] Flight stops
        • [ ] Passengers
        • [ ] Price
        • [ ] Airplane type
      • [ ] Virtual Flight Mode
        • [ ] Simulate airplane flying on the map with the timestamps
    • [ ] Destination Page Features
      • [ ] Save destination to the Watchlist
      • [ ] Pictures
      • [ ] Average temperature of the past week
      • [ ] Safety Rating
      • [ ] Points of Interests
        • [ ] POI Details
          • [ ] GPS Coordinates
          • [ ] Pictures
      • [ ] Hotels
        • [ ] Hotel Details
          • [ ] GPS Coordinates
          • [ ] Distance from the city center
          • [ ] Stars
          • [ ] Description
          • [ ] Pictures
          • [ ] Tags: Extra benefits, Appliances, …
    • [ ] Watchlist Page
      • [ ] Click to view the info about the destination
      • [ ] Drag to reorder destinations
      • [ ] Swipe to remove
    • [ ] Settings Page
      • [ ] Default departure location
      • [ ] Language
      • [ ] Currency
      • [ ] Temperature format
      • [ ] Length unit
      • [ ] Theme
      • [ ] Remove local data
  • [ ] Language Support
    • [x] English
    • [x] Czech
    • [ ] Portuguese
    • [ ] Russian
    • [ ] Chinese
    • [ ] French
    • [ ] German
  • [ ] Supported Platforms
    • [x] Android
    • [x] iOS
    • [x] Web
    • [ ] Desktop (Windows)

Other:

  • [ ] Null safety (not possible currently - not all packages are migrated yet)
  • [x] CI / Github Actions
  • [ ] Type of tests
    • [x] Unit
    • [ ] Widget
    • [ ] Integration
  • [ ] Test coverage milestones
    • [ ] 40%
    • [ ] 60%
    • [ ] 80%

Dependencies:

UI inspirations

Related recommended resources

Credits

Contribution

The app is still in the development process and isn’t suitable for contributions yet.

Download Details:

Author: mzdm

Source Code: https://github.com/mzdm/virtual_traveller_flutter

#flutter #dart #mobile-apps

Multiplatform Application Travel virtually and discover interesting destinations
3.30 GEEK