Skip to content

Instantly share code, notes, and snippets.

import 'package:flutter/material.dart';
class FadeIndexedStack extends StatefulWidget {
final int index;
final List<Widget> children;
final Duration duration;
const FadeIndexedStack({
Key key,
this.index,
@fleepgeek
fleepgeek / animated_indexed_stack.dart
Created November 8, 2020 21:49
Animated IndexedStack
import 'package:flutter/material.dart';
class AnimatedIndexedStack extends StatefulWidget {
final int index;
final List<Widget> children;
const AnimatedIndexedStack({
Key key,
this.index,
this.children,