getxify 2.0.0
getxify: ^2.0.0 copied to clipboard
An improved and enhanced version of GetX - Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetXify.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:getxify/getxify.dart';
import './services/auth_service.dart';
import 'app/routes/app_pages.dart';
void main() {
runApp(
GetMaterialApp(
title: "GetXify Example App",
binds: [Bind.put(AuthService())],
getPages: AppPages.routes,
initialRoute: AppPages.initial,
),
);
}