Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
vmeeting
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Inomjon
vmeeting
Commits
48e2f3c4
Commit
48e2f3c4
authored
Nov 01, 2023
by
Inomjon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Call cannection to app
parent
76d23890
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
incoming_call_screen.dart
lib/src/incoming_call_screen.dart
+12
-12
No files found.
lib/src/incoming_call_screen.dart
View file @
48e2f3c4
...
...
@@ -25,43 +25,43 @@ class IncomingCallScreen extends StatelessWidget {
mainAxisSize:
MainAxisSize
.
min
,
children:
<
Widget
>[
Padding
(
padding:
EdgeInsets
.
all
(
36
),
child:
Text
(
_getCallTitle
(),
style:
TextStyle
(
fontSize:
28
)),
padding:
const
EdgeInsets
.
all
(
36
),
child:
Text
(
_getCallTitle
(),
style:
const
TextStyle
(
fontSize:
28
)),
),
Padding
(
const
Padding
(
padding:
EdgeInsets
.
only
(
top:
36
,
bottom:
8
),
child:
Text
(
"Members:"
,
style:
TextStyle
(
fontSize:
20
)),
),
Padding
(
padding:
EdgeInsets
.
only
(
bottom:
86
),
padding:
const
EdgeInsets
.
only
(
bottom:
86
),
child:
Text
(
_callSession
.
opponentsIds
.
join
(
", "
),
style:
TextStyle
(
fontSize:
18
)),
style:
const
TextStyle
(
fontSize:
18
)),
),
Row
(
mainAxisSize:
MainAxisSize
.
min
,
children:
<
Widget
>[
Padding
(
padding:
EdgeInsets
.
only
(
right:
36
),
padding:
const
EdgeInsets
.
only
(
right:
36
),
child:
FloatingActionButton
(
heroTag:
"RejectCall"
,
child:
Icon
(
backgroundColor:
Colors
.
red
,
onPressed:
()
=>
_rejectCall
(
context
,
_callSession
),
child:
const
Icon
(
Icons
.
call_end
,
color:
Colors
.
white
,
),
backgroundColor:
Colors
.
red
,
onPressed:
()
=>
_rejectCall
(
context
,
_callSession
),
),
),
Padding
(
padding:
EdgeInsets
.
only
(
left:
36
),
padding:
const
EdgeInsets
.
only
(
left:
36
),
child:
FloatingActionButton
(
heroTag:
"AcceptCall"
,
backgroundColor:
Colors
.
green
,
onPressed:
()
=>
_acceptCall
(
context
,
_callSession
),
child:
Icon
(
Icons
.
call
,
color:
Colors
.
white
,
),
backgroundColor:
Colors
.
green
,
onPressed:
()
=>
_acceptCall
(
context
,
_callSession
),
),
),
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment