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

outdated

A UAE Pass plugin for Flutter.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'my_app.dart';

void main() {
  print("main called");
  runApp(const MyApp2());
}

class MyApp2 extends StatelessWidget {
  const MyApp2({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Home(),
    );
  }
}

class Home extends StatelessWidget {
  const Home({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: ElevatedButton(
            onPressed: () {
              Navigator.push(context,
                  MaterialPageRoute(builder: (context) => const MyApp()));
            },
            child: const Text("go Now")),
      ),
    );
  }
}