TF-2513 Fix can not load image svg in mobile web app

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2024-01-30 17:03:19 +07:00
committed by Dat H. Pham
parent 5ad800a2b0
commit 730255fd95
9 changed files with 452 additions and 1054 deletions
@@ -23,8 +23,14 @@ class UnknownRoutePageView extends StatelessWidget {
body: Center(
child: SingleChildScrollView(
child: Column(mainAxisSize: MainAxisSize.min, children: [
SvgPicture.asset(_imagePath.icPageNotFound),
const SizedBox(height: 48),
if (_responsiveUtils.isPortraitMobile(context))
Padding(
padding: const EdgeInsets.only(top: 48, bottom: 32),
child: SvgPicture.asset(_imagePath.icPageNotFoundMobile))
else
Padding(
padding: const EdgeInsets.symmetric(vertical: 48),
child: SvgPicture.asset(_imagePath.icPageNotFound)),
Container(
color: Colors.white,
padding: _getPaddingTitle(context),