remove base View

merge-requests/773/head
Elham Rababh 3 years ago
parent 469169023a
commit c3ed212e6a

@ -61,12 +61,11 @@ class _UpdateSoapIndexState extends State<UpdateSoapIndex>
Widget build(BuildContext context) {
final routeArgs = ModalRoute.of(context).settings.arguments as Map;
PatiantInformtion patient = routeArgs['patient'];
return BaseView<DoctorReplayViewModel>(
builder: (_, model, w) => AppScaffold(
isLoading: _isLoading,
isShowAppBar: false,
body: SingleChildScrollView(
child: SingleChildScrollView(
return AppScaffold(
isLoading: _isLoading,
isShowAppBar: false,
body: SingleChildScrollView(
child: SingleChildScrollView(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
@ -128,6 +127,6 @@ class _UpdateSoapIndexState extends State<UpdateSoapIndex>
),
),
),
));
);
}
}

Loading…
Cancel
Save