Add const

main
David 2023-06-13 01:05:02 +02:00
parent 4d04499dff
commit 31f229d122
1 changed files with 3 additions and 3 deletions

View File

@ -484,16 +484,16 @@ class _JobDetailsScreenState extends State<JobDetailsScreen> {
), ),
), ),
Padding( Padding(
padding: EdgeInsets.all(4.0), padding: const EdgeInsets.all(4.0),
child: Card( child: Card(
color: Colors.black54, color: Colors.black54,
child: Padding( child: Padding(
padding: EdgeInsets.all(8.0), padding: const EdgeInsets.all(8.0),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
AnimatedSwitcher( AnimatedSwitcher(
duration: Duration( duration: const Duration(
milliseconds: 500, milliseconds: 500,
), ),
child: _isCommenting child: _isCommenting