You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansu_ui/lib/widget/as_listtile.dart

62 lines
1.5 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
class ASListTile extends StatefulWidget {
///主标题
final String title;
///动态类型可传入widget
final dynamic text;
///内容
final Widget trail;
///宽度默认332px
final double width;
ASListTile({
Key key,
this.title,
this.text,
this.trail,
this.width,
}) : super(key: key);
@override
_ASListTileState createState() => _ASListTileState();
}
class _ASListTileState extends State<ASListTile> {
@override
Widget build(BuildContext context) {
return Container(
margin: EdgeInsets.symmetric(vertical: 8.w),
alignment: Alignment.centerLeft,
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
width: 85.w,
child: Text(
widget.title,
maxLines: 1,
overflow: TextOverflow.visible,
softWrap: false,
style: TextStyle(color: Color(0xD9000000), fontSize: 14.sp),
),
),
Expanded(
child: widget.text is String
? Text(
widget.text,
maxLines: 2,
style: TextStyle(color: Color(0xA6000000), fontSize: 14.sp),
)
: widget.text,
),
widget.trail ?? SizedBox(),
],
),
);
}
}