Correct logo
This commit is contained in:
parent
ab95c53f85
commit
c0859b18bd
|
|
@ -65,7 +65,7 @@ class MenuDrawer extends StatelessWidget {
|
||||||
company.settings.companyLogo.isNotEmpty
|
company.settings.companyLogo.isNotEmpty
|
||||||
? CachedImage(
|
? CachedImage(
|
||||||
width: MenuDrawer.LOGO_WIDTH,
|
width: MenuDrawer.LOGO_WIDTH,
|
||||||
url: account.defaultUrl + company.settings.companyLogo,
|
url: company.settings.companyLogo,
|
||||||
)
|
)
|
||||||
: Image.asset('assets/images/logo.png', width: MenuDrawer.LOGO_WIDTH);
|
: Image.asset('assets/images/logo.png', width: MenuDrawer.LOGO_WIDTH);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -446,8 +446,7 @@ class _CompanyDetailsState extends State<CompanyDetails>
|
||||||
padding: const EdgeInsets.symmetric(vertical: 20),
|
padding: const EdgeInsets.symmetric(vertical: 20),
|
||||||
child: CachedImage(
|
child: CachedImage(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
url: state.account.defaultUrl + settings.companyLogo,
|
url: settings.companyLogo,
|
||||||
//url: '${settings.logoUrl}?clear_cache=${state.selectedCompany.updatedAt}',
|
|
||||||
)),
|
)),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue