Skip to content

Commit

Permalink
Add larger click zone on back button
Browse files Browse the repository at this point in the history
  • Loading branch information
clone1018 committed Feb 22, 2022
1 parent 83b7724 commit a6a2833
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lib/screens/ChannelScreen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:glimesh_app/auth.dart';
import 'package:glimesh_app/blocs/repos/channel_bloc.dart';
import 'package:glimesh_app/components/Chat.dart';
import 'package:glimesh_app/components/ChatInput.dart';
import 'package:glimesh_app/components/FTLPlayer.dart';
import 'package:glimesh_app/components/StreamTitle.dart';
import 'package:glimesh_app/components/Loading.dart';
Expand Down Expand Up @@ -43,7 +42,13 @@ class ChannelScreen extends StatelessWidget {
child: FTLPlayer(channel: channel, edgeUrl: edgeRoute.url),
),
InkWell(
child: Icon(Icons.chevron_left),
child: Padding(
padding: EdgeInsets.all(5),
child: Icon(
Icons.chevron_left,
color: Colors.white70,
),
),
onTap: () => Navigator.pop(context),
)
],
Expand Down

0 comments on commit a6a2833

Please sign in to comment.