File tree Expand file tree Collapse file tree 4 files changed +30
-4
lines changed
Expand file tree Collapse file tree 4 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 1+ {
2+ // Use IntelliSense to learn about possible attributes.
3+ // Hover to view descriptions of existing attributes.
4+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+ "version" : " 0.2.0" ,
6+ "configurations" : [
7+ {
8+ "name" : " Flutter" ,
9+ "request" : " launch" ,
10+ "type" : " dart"
11+ }
12+ ]
13+ }
Original file line number Diff line number Diff line change 1+ include ' :app'
Original file line number Diff line number Diff line change @@ -125,10 +125,9 @@ class _ChatState extends State<ChatPage> {
125125 return Divider (color: Colors .grey, height: 1.0 );
126126 },
127127 itemCount: state.messages.length,
128- itemBuilder: (ctx, index) =>
129- ChatBubble (
130- message: reversed.elementAt (index),
131- ),
128+ itemBuilder: (ctx, index) => ChatBubble (
129+ message: reversed.elementAt (index),
130+ ),
132131 controller: scrollController,
133132 padding: EdgeInsets .symmetric (horizontal: 10 ),
134133 );
Original file line number Diff line number Diff line change 1+ import 'package:flutter/material.dart' ;
2+
3+ class RoomListPage extends StatefulWidget {
4+ @override
5+ State <StatefulWidget > createState () => _RoomListState ();
6+ }
7+
8+ class _RoomListState extends State <RoomListPage > {
9+ @override
10+ Widget build (BuildContext context) {
11+ return null ;
12+ }
13+ }
You can’t perform that action at this time.
0 commit comments