Skip to content

Commit eef58ed

Browse files
committed
bump version for release
- fix minor UI overflows as well.
1 parent 8a519b6 commit eef58ed

File tree

3 files changed

+25
-14
lines changed

3 files changed

+25
-14
lines changed

client-app/lib/views/electives_screen.dart

+16-8
Original file line numberDiff line numberDiff line change
@@ -182,18 +182,26 @@ class _ElectiveScreenState extends State<ElectiveScreen> {
182182
children: [
183183
const SizedBox(height: 16),
184184
Row(
185+
mainAxisAlignment: MainAxisAlignment.spaceBetween,
185186
children: [
186-
Icon(Icons.info_outline_rounded,
187-
color: colorScheme.tertiary),
188187
const SizedBox(width: 8),
189-
Text(
190-
"Effective from ${snapshot.data!["meta"]["effective-date"]}",
191-
style: TextStyle(
192-
fontWeight: FontWeight.bold,
193-
color: colorScheme.onBackground,
188+
Flexible(
189+
child: Row(
190+
children: [
191+
Icon(Icons.info_outline_rounded,
192+
color: colorScheme.tertiary),
193+
const SizedBox(width: 8),
194+
Text(
195+
"Effective from ${snapshot.data!["meta"]["effective-date"]}",
196+
style: TextStyle(
197+
fontWeight: FontWeight.bold,
198+
color: colorScheme.onBackground,
199+
),
200+
),
201+
],
194202
),
195203
),
196-
const Spacer(),
204+
const SizedBox(width: 16),
197205
InkWell(
198206
onTap: () => reportError(),
199207
child: Row(

client-app/lib/widgets/time_table.dart

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import 'package:flutter/material.dart';
2+
import 'package:flutter/widgets.dart';
23
import 'package:flutter_markdown/flutter_markdown.dart';
34
import 'package:get/get.dart';
45
import 'package:plan_sync/controllers/filter_controller.dart';
@@ -265,11 +266,13 @@ class _TimeTableWidgetState extends State<TimeTableWidget> {
265266
mainAxisSize: MainAxisSize.min,
266267
crossAxisAlignment: CrossAxisAlignment.start,
267268
children: [
268-
Text(
269-
"Effective from ${snapshot.data!["meta"]["effective-date"]}",
270-
style: TextStyle(
271-
fontWeight: FontWeight.bold,
272-
color: colorScheme.onPrimary,
269+
Flexible(
270+
child: Text(
271+
"Effective from ${snapshot.data!["meta"]["effective-date"]}",
272+
style: TextStyle(
273+
fontWeight: FontWeight.bold,
274+
color: colorScheme.onPrimary,
275+
),
273276
),
274277
),
275278
const SizedBox(height: 8),

client-app/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 1.1.0+6
19+
version: 1.2.0+7
2020

2121
environment:
2222
sdk: ">=3.0.6 <4.0.0"

0 commit comments

Comments
 (0)