lazy_indexed_stack icon indicating copy to clipboard operation
lazy_indexed_stack copied to clipboard

懒加载IndexedStack,IndexedStack默认全部加载children,在某些情况下我们不希望这样,lazy_indexed_stack在index被访问之后才加载对应的视图

Results 2 lazy_indexed_stack issues
Sort by recently updated
recently updated
newest added

Now, when some child is not loaded, it would be replaced by an empty container, but it will cause It size fit parent. For Example: ```dart import 'package:flutter/material.dart'; import './lazy_indexed_stack.dart';...