alpha
Login
or
Join now
kasper.space
/
notifier
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/probablykasper/notifier. Android app for scheduling notifications
android
app
flutter
notifications
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Fixed list view overflow issue
author
Kasper
date
7 years ago
(Jul 10, 2019, 4:31 PM +0200)
commit
b44d717d
b44d717db3a3884ab7791ed0a52ad637b989adbe
parent
04930404
04930404f7ab46379bb918245d9f0b349ab157ba
+21
-17
1 changed file
Expand all
Collapse all
Unified
Split
lib
views
list.dart
+21
-17
lib/views/list.dart
View file
Reviewed
···
1
1
import 'package:flutter/cupertino.dart';
2
2
import 'package:flutter/material.dart';
3
3
+
import 'package:flutter/rendering.dart';
3
4
import 'package:flutter/widgets.dart';
4
5
import 'package:notifier/models/notification_dialog.dart';
5
6
import 'package:notifier/models/theme_model.dart';
···
130
131
},
131
132
),
132
133
Container(width: 16),
133
133
-
Column(
134
134
-
crossAxisAlignment: CrossAxisAlignment.start,
135
135
-
children: [
136
136
-
Text(
137
137
-
item['title'],
138
138
-
style: TextStyle(
139
139
-
fontSize: 16,
140
140
-
fontWeight: FontWeight.w500,
134
134
+
Expanded(
135
135
+
child: Column(
136
136
+
crossAxisAlignment: CrossAxisAlignment.start,
137
137
+
children: [
138
138
+
Text(
139
139
+
item['title'],
140
140
+
style: TextStyle(
141
141
+
fontSize: 16,
142
142
+
fontWeight: FontWeight.w500,
143
143
+
),
141
144
),
142
142
-
),
143
143
-
Text(
144
144
-
item['description'],
145
145
-
style: TextStyle(
146
146
-
fontSize: 14,
147
147
-
fontWeight: FontWeight.w500,
148
148
-
color: themeModel.descriptionColor,
145
145
+
Text(
146
146
+
item['description'],
147
147
+
style: TextStyle(
148
148
+
fontSize: 14,
149
149
+
fontWeight: FontWeight.w500,
150
150
+
151
151
+
color: themeModel.descriptionColor,
152
152
+
),
149
153
),
150
150
-
),
151
151
-
],
154
154
+
],
155
155
+
),
152
156
),
153
157
],
154
158
),