Delay in Profile page
there's a default delay when pressing a badge tile, since it's a navigation. to remove the delay, the named Parameter "transitionDuration" needs to get a Duration with 0 milliseconds or some similar value. @pgrg81 do you have an open MR for this issue? :) it's just one line.
@override
Widget build(BuildContext context) => GestureDetector(
onTap: () {
Navigator.of(context).push(PageRouteBuilder(
opaque: false,
transitionDuration: Duration(milliseconds: 0),
pageBuilder: (_, __, ___) => ProfileBadgeCard(badge),
));
},
Edited by Marwin Lebensky