【发布时间】:2021-11-15 23:32:17
【问题描述】:
所以我的模态页面上有两个 SwitchListTiles,问题是文本不适合它。 (它需要 3 行,但应该是 1) How can I make it to be in one single line, without decreasing it's font size
child: SwitchListTile(
value: state.filter.flagId == null ? false : true,
onChanged: (newValue) =>
context.read<FilterBloc>().add(HotPressed(newValue)),
title: Text(
AppLocalizations.of(context)!.hotAdds.capitalize(),
style: FlutterFlowTheme.dark50016.copyWith(),
),
tileColor: FlutterFlowTheme.white,
activeColor: FlutterFlowTheme.primaryColor,
dense: true,
controlAffinity: ListTileControlAffinity.trailing,
),
我在想可能的答案可能是减少瓷砖之间的距离,但不知道该怎么做
【问题讨论】: