Skip to content

Commit

Permalink
Auto-format: Applied Flutter formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
V-X-L-U committed Jan 30, 2025
1 parent 75db684 commit 7271cf7
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions frontend/lib/views/model_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,23 @@ class ModelView extends StatelessWidget {

@override
Widget build(BuildContext context) {
return Scaffold(body:Padding(
padding: EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
'Attribute 1: ${model.attribute1}',
style: TextStyle(fontSize: 18.0),
),
Text(
'Attribute 2: ${model.attribute2}',
style: TextStyle(fontSize: 18.0),
),
],
return Scaffold(
body: Padding(
padding: EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
'Attribute 1: ${model.attribute1}',
style: TextStyle(fontSize: 18.0),
),
Text(
'Attribute 2: ${model.attribute2}',
style: TextStyle(fontSize: 18.0),
),
],
),
),
),);
);
}
}
}

0 comments on commit 7271cf7

Please sign in to comment.