TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Running multiple Flutter applications on a single web page

3 pointsby s3archabout 1 year ago

1 comment

s3archabout 1 year ago
It is a known fact that when a Flutter application is compiled for the web, we can run only one Flutter application at a time on a page. When we try to integrate multiple Flutter apps into a page, it throws an error due to a conflict in the _flutter object name space variables.<p>Running multiple Flutter apps on a single web page is an essential component of having a micro-frontend up and running in Flutter space too. Also, we can integrate multiple smaller Flutter apps into an existing project for greater composability.<p>Here I demonstrate how we can run multiple Flutter apps on a single page without any external libraries. This is purely on a research stage and not production ready.