Files
FlutterUnit/lib/views/widgets/StatefulWidget/Image/node6_centerSlice.dart
2020-05-03 23:05:53 +08:00

31 lines
664 B
Dart

import 'package:flutter/material.dart';
/// create by 张风捷特烈 on 2020-03-29
/// contact me by email 1981462002@qq.com
/// 说明:
// {
// "widgetId": 38,
// "name": '图片实现局部放大',
// "priority": 6,
// "subtitle":
// "【centerSlice】 : 保留的区域 【Rect】",
// },
class CenterSliceImage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
width: 300,
height: 80,
child: Image.asset(
"assets/images/right_chat.png",
centerSlice: Rect.fromLTRB(9, 27, 60, 27 + 1.0),
fit: BoxFit.fill,
),
);
}
}