|
|
@@ -44,6 +44,53 @@ class ModelExplainPage extends BasePage<ModelExplainController> {
|
|
|
}
|
|
|
|
|
|
Widget _buildContentView() {
|
|
|
- return Container();
|
|
|
+ return Column(
|
|
|
+ children: [
|
|
|
+ SizedBox(height: 16.h),
|
|
|
+ Container(
|
|
|
+ decoration: BoxDecoration(
|
|
|
+ color: ColorName.white,
|
|
|
+ borderRadius: BorderRadius.circular(8.w),
|
|
|
+ ),
|
|
|
+ margin: EdgeInsets.symmetric(horizontal: 12.w),
|
|
|
+ padding: EdgeInsets.symmetric(horizontal: 12.w, vertical: 14.w),
|
|
|
+ child: Column(
|
|
|
+ crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
+ children: [
|
|
|
+ Row(
|
|
|
+ children: [
|
|
|
+ Assets.images.iconModelExplain
|
|
|
+ .image(width: 32.w, height: 32.w),
|
|
|
+ SizedBox(width: 6.w),
|
|
|
+ Column(
|
|
|
+ crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
+ children: [
|
|
|
+ Assets.images.iconModelExplainLogo.image(height: 19.w),
|
|
|
+ Text(
|
|
|
+ StringName.mainDrawerModel.tr,
|
|
|
+ style: TextStyle(
|
|
|
+ fontSize: 9.sp,
|
|
|
+ color: ColorName.secondaryTextColor),
|
|
|
+ )
|
|
|
+ ],
|
|
|
+ )
|
|
|
+ ],
|
|
|
+ ),
|
|
|
+ SizedBox(height: 10.h),
|
|
|
+ Text(
|
|
|
+ '模型名称:${StringName.modelExplainName.tr}',
|
|
|
+ style: TextStyle(
|
|
|
+ fontSize: 13.sp, color: ColorName.secondaryTextColor),
|
|
|
+ ),
|
|
|
+ Text(
|
|
|
+ '备案号:${StringName.modelExplainRecordNumber.tr}',
|
|
|
+ style: TextStyle(
|
|
|
+ fontSize: 13.sp, color: ColorName.secondaryTextColor),
|
|
|
+ )
|
|
|
+ ],
|
|
|
+ ),
|
|
|
+ )
|
|
|
+ ],
|
|
|
+ );
|
|
|
}
|
|
|
}
|