mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
fix visual density prefer_const_constructors lint (#54471)
This commit is contained in:
parent
756a1f0301
commit
f7de5aa5b0
@ -451,14 +451,14 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
title: Text(_model.rtl ? 'هذا عنوان قصير' : 'This is a short title'),
|
title: Text(_model.rtl ? 'هذا عنوان قصير' : 'This is a short title'),
|
||||||
subtitle:
|
subtitle:
|
||||||
Text(_model.rtl ? 'هذا عنوان فرعي مناسب.' : 'This is an appropriate subtitle.'),
|
Text(_model.rtl ? 'هذا عنوان فرعي مناسب.' : 'This is an appropriate subtitle.'),
|
||||||
trailing: Icon(Icons.check_box),
|
trailing: const Icon(Icons.check_box),
|
||||||
onTap: () {},
|
onTap: () {},
|
||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
title: Text(_model.rtl ? 'هذا عنوان قصير' : 'This is a short title'),
|
title: Text(_model.rtl ? 'هذا عنوان قصير' : 'This is a short title'),
|
||||||
subtitle:
|
subtitle:
|
||||||
Text(_model.rtl ? 'هذا عنوان فرعي مناسب.' : 'This is an appropriate subtitle.'),
|
Text(_model.rtl ? 'هذا عنوان فرعي مناسب.' : 'This is an appropriate subtitle.'),
|
||||||
leading: Icon(Icons.check_box),
|
leading: const Icon(Icons.check_box),
|
||||||
dense: true,
|
dense: true,
|
||||||
onTap: () {},
|
onTap: () {},
|
||||||
),
|
),
|
||||||
@ -467,8 +467,8 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
subtitle:
|
subtitle:
|
||||||
Text(_model.rtl ? 'هذا عنوان فرعي مناسب.' : 'This is an appropriate subtitle.'),
|
Text(_model.rtl ? 'هذا عنوان فرعي مناسب.' : 'This is an appropriate subtitle.'),
|
||||||
dense: true,
|
dense: true,
|
||||||
leading: Icon(Icons.add_box),
|
leading: const Icon(Icons.add_box),
|
||||||
trailing: Icon(Icons.check_box),
|
trailing: const Icon(Icons.check_box),
|
||||||
onTap: () {},
|
onTap: () {},
|
||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
@ -476,8 +476,8 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
subtitle:
|
subtitle:
|
||||||
Text(_model.rtl ? 'هذا عنوان فرعي مناسب.' : 'This is an appropriate subtitle.'),
|
Text(_model.rtl ? 'هذا عنوان فرعي مناسب.' : 'This is an appropriate subtitle.'),
|
||||||
isThreeLine: true,
|
isThreeLine: true,
|
||||||
leading: Icon(Icons.add_box),
|
leading: const Icon(Icons.add_box),
|
||||||
trailing: Icon(Icons.check_box),
|
trailing: const Icon(Icons.check_box),
|
||||||
onTap: () {},
|
onTap: () {},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user