getxify 2.0.0 copy "getxify: ^2.0.0" to clipboard
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,
    ),
  );
}
3
likes
0
points
587
downloads

Publisher

unverified uploader

Weekly Downloads

An improved and enhanced version of GetX - Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetXify.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_web_plugins, web

More

Packages that depend on getxify