eyf_route 0.0.6 copy "eyf_route: ^0.0.6" to clipboard
eyf_route: ^0.0.6 copied to clipboard

flutter route

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Running on: \n'),
        ),
      ),
    );
  }
}
0
likes
125
points
50
downloads

Publisher

unverified uploader

Weekly Downloads

flutter route

Repository

Documentation

API reference

License

unknown (license)

Dependencies

eyf_kit, flutter

More

Packages that depend on eyf_route