getx_helper 0.0.1 copy "getx_helper: ^0.0.1" to clipboard
getx_helper: ^0.0.1 copied to clipboard

A plugin for simplifying the use of GetX

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:example/common/route/route.dart';
import 'package:get/get.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return GetMaterialApp(
      title: 'Application',
      getPages: AppPage.routes,
      initialRoute: AppRoute.home,
    );
  }
}
0
likes
140
points
18
downloads

Publisher

verified publisherfullstackaction.com

Weekly Downloads

A plugin for simplifying the use of GetX

Homepage

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, get

More

Packages that depend on getx_helper