mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
25 lines
631 B
Dart
25 lines
631 B
Dart
import 'package:flowy_sdk/protobuf/flowy-workspace/view_create.pb.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flowy_infra/image.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 = svgWidgetWithName(imageName);
|
|
|
|
return svg;
|
|
}
|
|
|
|
String imageNameForViewType(ViewType type) {
|
|
switch (type) {
|
|
case ViewType.Doc:
|
|
return "file_icon.svg";
|
|
default:
|
|
return "file_icon.svg";
|
|
}
|
|
}
|