The Space Explorer application I developed with Flutter gives information about the 9 planets closest to the Sun.
git clone https://github.com/speeedev/Space_Explorer_App_Flutter.git
- flutter pub get
- flutter run
-
Splash: The first page that opens when the application is started. This page is shown before the home page loads. Data is loaded before redirecting to the home page. Thus, when the user enters the home page, he does not wait for the data to load.
-
Home: Page listing the planets. Demonstrated using Carousel Slider.
-
Planet Detail: A description of the planet and video, if available, are shown.
When the application is opened, it connects to the API system I wrote through the network process and information about the planets is retrieved from there. I launched the API system with render.com, a free hosting service.
Information is retrieved from the Splash page via API. It is then forwarded to the home page. When the user clicks on the planet whose details he wants to see, the planet information is sent while being directed to the page. In other words, no more network operations are performed on the Planet Detail page.
View Name | Screenshot |
---|---|
Splash | ![]() |
Home | ![]() |
Planet Detail | ![]() |