Skip to content

Commit

Permalink
💄 Add padding to Unterstufen-VPlan Message
Browse files Browse the repository at this point in the history
Like on the "nothing found" message
  • Loading branch information
strifel committed Aug 2, 2020
1 parent bba54b5 commit cacc946
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/Views/RPlan.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ class RPlanState extends State<RPlan> with AutomaticKeepAliveClientMixin<RPlan>,
return new Scaffold(
appBar: AppBar(),
body: Center(
child: Text("Der Vertretungsplan ist Oberstufenschüler*innen vorbehalten!"),
child: Padding(
padding: EdgeInsets.all(10),
child: Text("Der Vertretungsplan ist Oberstufenschüler*innen vorbehalten!"),
),
),
);
}
Expand Down

0 comments on commit cacc946

Please sign in to comment.