Coder Social home page Coder Social logo

audio-books's Introduction

Advanced Login and Register UI Flutter App

This is a Flutter application that features an advanced login and registration system. The app demonstrates the use of Flutter's navigation, stateful widgets, and custom styling.

Features

  • Login Screen
  • Registration Screen
  • Custom Styling
  • Navigation between login and registration screens

Getting Started

Prerequisites

  • Flutter SDK
  • Dart SDK

Installation

  1. Clone the repository:
git clone https://github.com/jmrashed/advanced-login-register-flutter-ui-kit.git
  1. Navigate to the project directory:
cd advanced_login_app
  1. Get the dependencies:
flutter pub get

Running the App

To run the app, use the following command:

flutter run

Make sure you have a connected device or an emulator running.

Project Structure

advanced_login_app/
│
├── assets/
│   ├── login.png
│   └── register.png
│
├── lib/
│   ├── main.dart
│   ├── login.dart
│   └── register.dart
│
├── pubspec.yaml
└── README.md

Code Overview

main.dart

This is the entry point of the application. It sets up the routes and initializes the app.

import 'package:advanced_login_app/login.dart';
import 'package:advanced_login_app/register.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(MaterialApp(
    debugShowCheckedModeBanner: false,
    home: const MyLogin(),
    routes: {
      'register': (context) => const MyRegister(),
      'login': (context) => const MyLogin(),
    },
  ));
}

login.dart

This file contains the MyLogin widget, which builds the login screen UI.

register.dart

This file contains the MyRegister widget, which builds the registration screen UI.

Assets

  • login.png - Background image for the login screen.
  • register.png - Background image for the registration screen.

Customization

To customize the app, you can modify the UI components in login.dart and register.dart. You can also replace the background images in the assets folder with your own images.

Demo

Contributing

Contributions are welcome! Please fork the repository and submit a pull request for any changes.

License

This project is licensed under the MIT License - see the LICENSE file for details.

audio-books's People

Contributors

jmrashed avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.