Merge branch 'video-stream-background' into 'development'

Video stream background

See merge request Cloud_Solution/doctor_app_flutter!760
merge-requests/762/merge
Mohammad Aljammal 5 years ago
commit f0d90c0e9a

@ -121,8 +121,8 @@
android:id="@+id/record_icon" android:id="@+id/record_icon"
android:layout_width="@dimen/local_back_icon_size" android:layout_width="@dimen/local_back_icon_size"
android:layout_height="@dimen/local_back_icon_size" android:layout_height="@dimen/local_back_icon_size"
android:layout_gravity="center"
android:scaleType="centerCrop" android:scaleType="centerCrop"
android:layout_margin="5dp"
android:src="@drawable/ic_record" /> android:src="@drawable/ic_record" />
</FrameLayout> </FrameLayout>

@ -309,7 +309,7 @@ class _PatientProfileScreenState extends State<PatientProfileScreen> with Single
// .openVideo( // .openVideo(
// model.startCallRes, // model.startCallRes,
// patient, // patient,
// false, callConnected, // model.startCallRes.isRecording // model.startCallRes != null ? model.startCallRes.isRecording : true, callConnected,
// callDisconnected); // callDisconnected);
// }); // });
if (isCallFinished) { if (isCallFinished) {
@ -349,7 +349,7 @@ class _PatientProfileScreenState extends State<PatientProfileScreen> with Single
.openVideo( .openVideo(
model.startCallRes, model.startCallRes,
patient, patient,
/*model.startCallRes != null ? model.startCallRes.isRecording : */ true model.startCallRes != null ? model.startCallRes.isRecording : true
, callConnected, , callConnected,
callDisconnected); callDisconnected);
}); });

Loading…
Cancel
Save