Skip to content

Instantly share code, notes, and snippets.

View AhmadSadik1's full-sized avatar
🏠
Working from home

Ahmad AhmadSadik1

🏠
Working from home
View GitHub Profile
@eduardoflorence
eduardoflorence / main.dart
Last active April 10, 2024 10:40
Getx - Sample Form
import 'package:flutter/material.dart';
import 'package:get/get.dart';
void main() {
runApp(GetMaterialApp(
initialRoute: '/login',
getPages: [
GetPage(
name: '/login',
page: () => LoginPage(),