/*
* @author lsy
* @date 2019-09-09
**/
import 'package:flutter/src/widgets/framework.dart';
import 'package:gmalpha_flutter/AlbumModel/AlbumRouter.dart';
import 'package:gmalpha_flutter/AlbumModel/page/album/AlbumPage.dart';
class AlbumRouterImpl implements AlbumRouter {
@override
Widget getAlbumPage(String provider, bool showCamera, int bigSelectSize,
List<String> selectedImages, bool fromNative, String fromPage,
{int maxVideoCount = 0, videoSelectPath , iosPushedPage }) {
return AlbumPage(provider, showCamera, bigSelectSize, selectedImages,
fromNative, maxVideoCount, videoSelectPath, fromPage,iosPushedPage);
}
}
-
林生雨 authored0968a395