@@ -234,18 +234,21 @@ class FContentImage extends StatelessWidget implements FWidget {
return FPositioned(
bottom: 5,
left: 5,
+ right: 5,
child: _buildApplication(),
);
}
///构建描述字段
FWidget _buildApplication() {
- return FText(
- description ?? "",
- style: TextStyle(
- color: Colors.white,
- fontSize: 10,
- overflow: TextOverflow.ellipsis,
+ return FContainer(
+ child: FText(
+ description ?? "",
+ softWrap: true,
+ style: TextStyle(
+ color: Colors.white,
+ fontSize: 10,
+ ),
),