mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
28 lines
663 B
Dart
28 lines
663 B
Dart
import 'package:flowy_sdk/protobuf/flowy-workspace/view_create.pb.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
|
|
AssetImage assetImageForViewType(ViewType type) {
|
|
final imageName = imageNameForViewType(type);
|
|
return AssetImage('assets/images/$imageName');
|
|
}
|
|
|
|
Widget svgImageForViewType(ViewType type) {
|
|
final imageName = imageNameForViewType(type);
|
|
final Widget svg = SvgPicture.asset(
|
|
'assets/images/$imageName',
|
|
);
|
|
|
|
return svg;
|
|
}
|
|
|
|
String imageNameForViewType(ViewType type) {
|
|
switch (type) {
|
|
case ViewType.Doc:
|
|
return "file_icon.svg";
|
|
default:
|
|
return "file_icon.svg";
|
|
}
|
|
}
|