fix visual density prefer_const_constructors lint (#54471)

This commit is contained in:
Jonah Williams 2020-04-10 11:20:25 -07:00 committed by GitHub
parent 756a1f0301
commit f7de5aa5b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: () {},
), ),
], ],