Let's explore space together with SpaceApp? Within the SpaceApp application

Related tags

Templates SpaceApp
Overview

SpaceApp

Let's explore space together with SpaceApp? Within the SpaceApp application, it will give you brief information about the space vehicles renewed every day, the stars discovered. I am happy to present the SpaceApp interface to you.

Android.Emulator.-.ExampleofHSD.2022-08-24.18-23-30.mp4

-----------------------------------------------------------

🚀 SpaceApp's Open Source code 🚀

-----------------------------------------------------------

image

Step 1) Crate a new flutter project. 🧑‍🚀 🧑‍🚀

Step 2) Let's go to https://pub.dev/packages/liquid_swipe and get the necessary document.

Step 3) Add this to your pubspec.yaml

    dependencies:
    liquid_swipe: ^3.0.0

Step 4) You have to create a file named assets/images and add the photos in it.

Step 5) Let's go into the pubspec.yaml file and remove the assets code from being a comment line and do it as follows.

      assets:
      - assets/images/

Step 6) Add below code to your project

    import 'package:liquid_swipe/liquid_swipe.dart';

Step 7) The StatelessWidget of your MyApp class should look like this:

    class MyApp extends StatelessWidget {
   
    const MyApp({Key? key}) : super(key: key);

     @override

    Widget build(BuildContext context) {

    return MaterialApp(

    debugShowCheckedModeBanner: false,

    title: 'SpaceApp Beta Version',

    theme: ThemeData(

    primarySwatch: Colors.blue,

    ),

    home: const MyHomePage(title: 'Flutter Demo Home Page'),

    );

    }

  }

Step 8) We create a list of contoiners to add pages in the liquid swipe structure under the _MyHomePageState class. You can get help from the code below. 💁🏻💁🏻

[ Text( "Uzay Aracı", style: TextStyle( fontSize: 30.0, color: Color(0xFFA1B6CC), ), ), Text( "Discovery Uzay Mekiği", style: TextStyle( fontSize: 30.0, color: Color(0xFF3A342D), fontWeight: FontWeight.bold), ), SizedBox( height: 20.0, ), Divider(color: Colors.black), Text( "NASA'ya ait olan uzay mekiği filosunun\n" "geriye kalan üç uzay aracından biridir.\n" "İlk uçuşunu 1984 yılında yapmıştır. Uzay\n" "araştırmalarında ve Uluslararası Uzay \n" "İstasyonu'nun yapımında görev almıştır.", style: TextStyle( color: Colors.white70, fontWeight: FontWeight.w300, fontSize: 17.0), ), ]), ) ], ), ), ]">
    final page = [
Container(
  color: Color.fromARGB(255, 67, 133, 171),
  child: Column(
    mainAxisAlignment: MainAxisAlignment.spaceEvenly,
    crossAxisAlignment: CrossAxisAlignment.start,
    children: [
      Center(
        child: Image.asset(
          "assets/images/discovery.png",
          width: 250.0,
        ),
      ),
      Padding(
        padding: const EdgeInsets.symmetric(
          horizontal: 30.0,
        ),
        child: Column(children: const [
          Text(
            "Uzay Aracı",
            style: TextStyle(
              fontSize: 30.0,
              color: Color(0xFFA1B6CC),
            ),
          ),
          Text(
            "Discovery Uzay Mekiği",
            style: TextStyle(
                fontSize: 30.0,
                color: Color(0xFF3A342D),
                fontWeight: FontWeight.bold),
          ),
          SizedBox(
            height: 20.0,
          ),
          Divider(color: Colors.black),
          Text(
            "NASA'ya ait olan uzay mekiği filosunun\n"
            "geriye kalan üç uzay aracından biridir.\n"
            "İlk uçuşunu 1984 yılında yapmıştır. Uzay\n"
            "araştırmalarında ve Uluslararası Uzay \n"
            "İstasyonu'nun yapımında görev almıştır.",
            style: TextStyle(
                color: Colors.white70,
                fontWeight: FontWeight.w300,
                fontSize: 17.0),
          ),
        ]),
      )
    ],
  ),
),
]

Step 9) At least step: Your Widget Build part is look like

        @override
    Widget build(BuildContext context) {
    return Scaffold(
    body: LiquidSwipe(
    pages: page,
    enableLoop: true,
    fullTransitionValue: 600,
    enableSideReveal: true,
    ),
  );
}

🎉 🎉 🎉 If you've made it this far, congratulations! 🥷 🥷 🥷

Connect with me:

yusuf-kaygusuz-69b992230 yusufskaygusuz @yusufskaygusuz

You might also like...

Space Themed Turn-Based Strategy Game developed in Flutter

Space Themed Turn-Based Strategy Game developed in Flutter

Space Empires 🛸 Introduction 🚀 Space Empires A 4X Space themed Strategy Game made with Flutter Complete Rules and Instruction can be accessed from t

Dec 24, 2022

Space Themed Turn-Based Strategy Game developed in Flutter

Space Themed Turn-Based Strategy Game developed in Flutter

Space Empires 🛸 Introduction 🚀 Space Empires A 4X Space themed Strategy Game made with Flutter Complete Rules and Instruction can be accessed from t

Nov 30, 2021

Gallery with thousands of photos, no time to organize, no way to search and not enough space

Gallery with thousands of photos, no time to organize, no way to search and not enough space

Artificial Intelligence-Powered Gallery Overview Gallery with thousands of photos, no time to organize, no way to search and not enough space; these a

Jul 25, 2022

Mars - Space Travel

Mars - Space Travel Space Travel UI (created in flutter) Reference from: https://dribbble.com/shots/6520262-Mars. YouTube Link: https://www.youtube.co

Dec 26, 2022

This is template toolkit fasten your project setup within a minute. The toolkit is based on MVC+S structure.

This is template toolkit fasten your project setup within a minute. The toolkit is based on MVC+S structure.

BWeird Flutter Toolkit! Hi! From a Weirder Flutter has been great on mobile development and I took this opportunity to make it even greater with templ

Aug 22, 2021

Create a Flutter User Profile Page UI where you can access and edit your user's information within your Flutter app.

Create a Flutter User Profile Page UI where you can access and edit your user's information within your Flutter app.

Flutter Tutorial - User Profile Page UI 1/2 Create a Flutter User Profile Page UI where you can access and edit your user's information within your Fl

Dec 6, 2022

Create a Flutter User Profile Page UI where you can access and edit your user's information within your Flutter app.

Create a Flutter User Profile Page UI where you can access and edit your user's information within your Flutter app.

Flutter Tutorial - User Profile Page UI #2 Create a Flutter User Profile Page UI where you can access and edit your user's information within your Flu

Dec 15, 2022

Let's create a selectable Flutter Navigation Drawer with routing that highlights the current item within the Flutter Sidebar Menu.

Let's create a selectable Flutter Navigation Drawer with routing that highlights the current item within the Flutter Sidebar Menu.

Flutter Tutorial - Sidebar Menu & Selectable Navigation Drawer Let's create a selectable Flutter Navigation Drawer with routing that highlights the cu

Dec 26, 2022

I just designed this within 30 min after watching a video by tech school on YouTube.

I just designed this within 30 min after watching a video by tech school on YouTube.

nft_app A new Flutter application. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if t

Dec 25, 2021
Owner
Yusuf S. Kaygusuz
I am a Computer Engineer who is extremely open to development and innovations. I am a Programmer and Developer interested in OOP, robotic and mobile coding.
Yusuf S. Kaygusuz
This is a project made with Flutter to explore its possibilities and limitations.

persona_builder An application to help you build the perfect persona. Running the application (for web) 1. Prepare environment Make sure you have all

null 0 Dec 24, 2021
An app to explore and bookmark packages hosted on pub.dev.

pub.dev explorer An app to explore and bookmark packages hosted on pub.dev. Web App Packages are shown in descending order starting from the most rece

Kabo 2 Nov 11, 2022
Be together, whenever. A simple way to text chat and plan things all in one place for flutter developers.

Flutterdevconnect Be together, whenever. A simple way to text chat and plan things all in one place for flutter developers. Android IOS Web PWA Androi

Sanskar Tiwari 69 Aug 27, 2022
Haja: Do Together

todo A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if this is

null 2 May 2, 2022
A flutter portfolio app made at RocketSeat's NextLevelWeek Together

Pay Flow About! A flutter portfolio app made at RocketSeat's NextLevelWeek Together. PayFlow is a mobile application made in Flutter for Billet Manage

Tarlison Sander 3 Sep 10, 2022
This is a university marketplace, where students buy and sell products and services online or offline. Mainly to connect the two parties together.

marktorder A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if th

Ibukunoluwa Naphtali 1 Jan 10, 2022
Bhargav Reddy 10 Nov 12, 2022
AhoyHacks Hackathon aims to bring together developers from around the globe to build something unique on the weekend

Pirate Island Are you a budding pirate & want to go on a journey to hunt treasures? Well, what are you waiting for! Register yourself on the Pirate Is

Amartya Yadav 1 May 15, 2022
Get git information from within the Flutter application

git_info_plus Get git information from within the Flutter application. Usage Dart final String branchName = await GitInfo.branchName; final DateTime l

Akira Aratani 4 May 17, 2022
A simple way to share Instagram stories as an embedded feature within the Flutter application

Loopi Share A simple way to share Instagram stories as an embedded feature within the Flutter application. Introduction Words on both platforms Androi

Loopi 5 Sep 24, 2022