Live demo : https://v1v3k-linktree-clone.web.app
Splash screen | Custom animated banner | Hover effect for web |
---|---|---|
On splash screen we are using network image which will work fine while debugging on mobile but it will through an error when trying to debug on brower. It is because on desktop browser it uses CanvasKit renderer. So instead of CanvasKit renderer you should consider using HTML renderer
The HTML renderer can load cross-origin images without extra configuration. so you could use these commands to run and build the app.
flutter run -d chrome --web-renderer html // to run the app flutter build web --web-renderer html --release // to generate a production build
Licensed under the MIT License.