hardikweetech
hardikweetech
its simple transaction of the screen with animation here is an example : here I am setting splash screen as home in main ```dart void main() { runApp(const MyApp()); }...
here is flutter run -v : Logs ``` [ +100 ms] executing: sysctl hw.optional.arm64 [ +19 ms] Exit code 1 from: sysctl hw.optional.arm64 [ ] sysctl: unknown oid 'hw.optional.arm64' [...
```dart import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); // This widget is the root of your application. @override...
There is no error it is just when you navigate through a splash screen to any other Screen it will blink and open another screen whereas in other route navigation...
https://docs.flutter.dev/cookbook/animation/page-route-animation in this link at end, there is an example you can check how animation work for two screens which was expected and this was actually happening when splash screen...
Not Working in release mode, I also check that
@iapicca @exaby73 you don't understand me here I just want that when the screen goes from splash screen to another screen the transition must have an animation which did not...
just set animation which you will clearly see when transitioning in splash to the home screen you will know what I want to say here
> is it possible to show the expected result vs the actual results? You can share a video or gif I tried alternative devices also didn't work
@iapicca yes, obviously i run the code