-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Description
If I run
import 'package:flutter/material.dart';
import 'package:myapp/Text/GradientText.dart';
import 'package:flutter_animate/flutter_animate.dart';
class AppTitle extends StatelessWidget {
const AppTitle({ super.key });
@override
Widget build(BuildContext context) {
return Padding(
padding: EdgeInsets.only(top: 10, bottom: 10),
child: Column(
children: <Widget>[
GradientText(size: 50, text: "Application Title").animate().fade(delay: 5200.ms, duration: 500.ms),
Padding(
padding: EdgeInsets.only(top: 10, bottom: 10),
child: Text(
style: TextStyle(
fontWeight: FontWeight.bold,
color: Color(0xFFFFFFFF),
fontSize: 20,
fontFamily: "VarelaRound"
),
"Welcome, please sign in"
).animate().fade(delay: 6200.ms, duration: 500.ms)
)
],
)
);
}
}
No fade animation will happen on app launch, both in debug and production. The closest thing I get to an error is this
I/flutter ( 3279): [IMPORTANT:flutter/shell/platform/android/android_context_vk_impeller.cc(61)] Using the Impeller rendering backend (Vulkan).
I/Choreographer( 3279): Skipped 150 frames! The application may be doing too much work on its main thread.
D/CompatChangeReporter( 3279): Compat change id reported: 306666082; UID 10556; state: ENABLED
I/WindowExtensionsImpl( 3279): Initializing Window Extensions, vendor API level=8, activity embedding enabled=true
Idk if this has to do with flutter_animate or not. Aside from that there's no other error message, the animation simply doesn't work, or have a delay.
Metadata
Metadata
Assignees
Labels
No labels