@@ -50,7 +50,8 @@ class _RoomPageState extends State<RoomPage> {
5050
5151 void _setUpListeners () => _listener
5252 ..on < RoomDisconnectedEvent > ((_) async {
53- WidgetsBinding .instance? .addPostFrameCallback ((timeStamp) => Navigator .pop (context));
53+ WidgetsBinding .instance
54+ ? .addPostFrameCallback ((timeStamp) => Navigator .pop (context));
5455 })
5556 ..on < DataReceivedEvent > ((event) {
5657 String decoded = 'Failed to decode' ;
@@ -120,7 +121,8 @@ class _RoomPageState extends State<RoomPage> {
120121 }
121122
122123 // joinedAt
123- return a.joinedAt.millisecondsSinceEpoch - b.joinedAt.millisecondsSinceEpoch;
124+ return a.joinedAt.millisecondsSinceEpoch -
125+ b.joinedAt.millisecondsSinceEpoch;
124126 });
125127
126128 if (participants.length > 1 ) {
@@ -138,8 +140,9 @@ class _RoomPageState extends State<RoomPage> {
138140 body: Column (
139141 children: [
140142 Expanded (
141- child:
142- participants.isNotEmpty ? ParticipantWidget (participants.first) : Container ()),
143+ child: participants.isNotEmpty
144+ ? ParticipantWidget (participants.first)
145+ : Container ()),
143146 SizedBox (
144147 height: 100 ,
145148 child: ListView .builder (
@@ -149,7 +152,8 @@ class _RoomPageState extends State<RoomPage> {
149152 width: 100 ,
150153 height: 100 ,
151154 padding: const EdgeInsets .all (2 ),
152- child: ParticipantWidget (participants[index + 1 ], quality: VideoQuality .LOW ),
155+ child: ParticipantWidget (participants[index + 1 ],
156+ quality: VideoQuality .LOW ),
153157 ),
154158 ),
155159 ),
0 commit comments