ff_annotation_route_library 3.2.3 copy "ff_annotation_route_library: ^3.2.3" to clipboard
ff_annotation_route_library: ^3.2.3 copied to clipboard

The library for ff_annotation_route,support both null-safety and non-null-safety.

example/main.dart

import 'package:ff_annotation_route_library/ff_annotation_route_library.dart';
import 'package:flutter/widgets.dart';

class MyWidget extends StatefulWidget {
  const MyWidget({Key? key}) : super(key: key);

  @override
  State<MyWidget> createState() => _MyWidgetState();
}

class _MyWidgetState extends State<MyWidget>
    with RouteLifecycleMixin<MyWidget> {
  @override
  void onPageShow() {
    // Do something when the page is shown
    super.onPageShow();
  }

  @override
  Widget build(BuildContext context) {
    return const Placeholder();
  }
}
3
likes
160
points
826
downloads

Publisher

verified publisherfluttercandies.com

Weekly Downloads

The library for ff_annotation_route,support both null-safety and non-null-safety.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

collection, ff_annotation_route_core, flutter

More

Packages that depend on ff_annotation_route_library