get_stacked 1.0.6 copy "get_stacked: ^1.0.6" to clipboard
get_stacked: ^1.0.6 copied to clipboard

outdated

An implementation of the Stacked package using Get. It gives you all the amazing utility classes from the Stacked package but without the dependency on provider.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:get_only_example/ui/views/test_view.dart';

import 'ui/router.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return GetMaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(),
      getPages: Router.namedRoutes,
      unknownRoute: Router.errorRoute,
    );
  }
}
8
likes
0
pub points
0%
popularity

Publisher

unverified uploader

An implementation of the Stacked package using Get. It gives you all the amazing utility classes from the Stacked package but without the dependency on provider.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, get

More

Packages that depend on get_stacked