Can we make web app or website using flutter or Dart

Viewed 5591

"I'm moving on to new language for creating cross platform app(flutter) but i am confused about creating web app or website , is it possible to make with Dart & flutter.

3 Answers

As of May 8th, 2019, we can create web apps using Flutter. Read through this article for more info.

Flutter: Create and Deploy a Website From Scratch

And the official git repository is here.

The readme in the git repository mentions setup, workflow, how to migrate from an existing codebase and much more.

UPDATE:

It is possible to write a web app using flutter as of June 2019. It's still in beta and is being worked on. It is flutter_web.

It supports the flutter animations and has the same widget tree concept.

It's no longer the workflow to use just dart to write a web app.

The answer below was applicable until a few months ago.

Long story short: everything you need is on Flutter website: https://flutter.io/ - Your question supposed to be "Can we make web app or website using Dart", Dart is a programming language, Flutter is using Dart to write mobile apps.

Related