Minor fixes

This commit is contained in:
Igor Kulikov
2021-06-03 20:53:27 +03:00
parent 068dbbdf0c
commit 125ecab009
6 changed files with 136 additions and 133 deletions

View File

@@ -113,10 +113,8 @@ class _TransitionIndexedStackState extends State<TransitionIndexedStack> with Ti
@override
Widget build(BuildContext context) {
return GestureDetector(
child: Stack(
children: _pages,
),
return Stack(
children: _pages,
);
}