Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get.to 为什么在第一次跳转的时候当前route没有过渡效果 #3072

Open
butterflyXX opened this issue Apr 7, 2024 · 0 comments
Assignees

Comments

@butterflyXX
Copy link

import 'package:flutter/material.dart';
import 'package:get/get.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
@OverRide
State createState() => _MyAppState();
}

class _MyAppState extends State {

@OverRide
Widget build(BuildContext context) {
return GetMaterialApp(
home: Scaffold(
body: Center(
child: Text("One Page Test"),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
Get.to(() => const TwoPage(),);
},
),
),
);
}
}

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

@OverRide
State createState() => _TwoPageState();
}

class _TwoPageState extends State {
@OverRide
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text("Two Page"),
),
);
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants