getx_plus 5.2.0 copy "getx_plus: ^5.2.0" to clipboard
getx_plus: ^5.2.0 copied to clipboard

State management and dependency injection for Flutter with a lightweight GetX-style API.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:getx_plus/getx_plus.dart';
import 'pages/splash/splash_binding.dart';
import 'pages/main/main_binding.dart';
import 'pages/splash/spalsh_view.dart';

void main() {
  Get.runBindings([SplashBinding(), MainBinding()]);
  runApp(const GetxPlusApp());
}

class GetxPlusApp extends StatelessWidget {
  const GetxPlusApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'GetX Plus Demo',
      showPerformanceOverlay: true,
      home: const SplashView(),
    );
  }
}
4
likes
145
points
404
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

State management and dependency injection for Flutter with a lightweight GetX-style API.

Homepage
Repository (GitHub)

Topics

#widget #state-management #dependency-injection

License

MIT (license)

Dependencies

equatable, flutter, flutter_web_plugins, web

More

Packages that depend on getx_plus