[READ-ONLY] Mirror of https://github.com/probablykasper/notifier. Android app for scheduling notifications
android app flutter notifications
0

Configure Feed

Select the types of activity you want to include in your feed.

Fixed list view overflow issue

+21 -17
+21 -17
lib/views/list.dart
··· 1 1 import 'package:flutter/cupertino.dart'; 2 2 import 'package:flutter/material.dart'; 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 - Column( 134 - crossAxisAlignment: CrossAxisAlignment.start, 135 - children: [ 136 - Text( 137 - item['title'], 138 - style: TextStyle( 139 - fontSize: 16, 140 - fontWeight: FontWeight.w500, 134 + Expanded( 135 + child: Column( 136 + crossAxisAlignment: CrossAxisAlignment.start, 137 + children: [ 138 + Text( 139 + item['title'], 140 + style: TextStyle( 141 + fontSize: 16, 142 + fontWeight: FontWeight.w500, 143 + ), 141 144 ), 142 - ), 143 - Text( 144 - item['description'], 145 - style: TextStyle( 146 - fontSize: 14, 147 - fontWeight: FontWeight.w500, 148 - color: themeModel.descriptionColor, 145 + Text( 146 + item['description'], 147 + style: TextStyle( 148 + fontSize: 14, 149 + fontWeight: FontWeight.w500, 150 + 151 + color: themeModel.descriptionColor, 152 + ), 149 153 ), 150 - ), 151 - ], 154 + ], 155 + ), 152 156 ), 153 157 ], 154 158 ),