Introduction

Flutter-view is an open source tool that makes writing reactive Flutter layouts a breeze. It lets you use Pug and Sass to generate the Flutter Dart code that renders the views in your app.

You use it by running the flutter-view command in your terminal to let it monitor your project. When it detects changes in a Pug or Sass file, it automatically generates or updates a matching Dart file.

Flutter-view 2.0.0 and up fully support writing null-safe code in Dart 2.13 and up.

Why views in Flutter

In standard Flutter Dart code, the "state" of your application is mixed in with the presentation. This can make it hard to structure and scale your code.

Flutter-view is about creating views, which are functions that return a widget tree for presenting something. These functions act a bit like components. Flutter-view uses Pug to make layouts more terse and Sass to let you style faster and more easily.

The state part comes into play when you make your view reactive. You can pass models (or streams) into your views. When these models change, the views automatically adapt.

Creating a view

A single flutter-view in pug generates a Dart function that usually returns a widget tree.

hello.pug
hello(flutter-view)
    .greeting Hello world!

Click the tabs to see the Pug code, the HTML representation of the Pug, and the Dart code that flutter-view generates for you.

This generated function can be used like any other Dart code, and will return the code that gives the greeting.

Adding Styling

You can add Sass to style your view. These styles get mixed with your pug to generate styled Dart code. Flutter-view supports CSS style properties that convert into code. For our example, you can easily add a text color, background color, some font properties, and add padding:

hello.pug
hello(flutter-view)
    .greeting Hello world!

Click the tabs to see the Pug code, the Sass styles we apply, and the code that flutter-view generates for you.

Flutter-view supports many CSS properties, and makes it easy to change styles and immediately see the effect. Since single CSS rules can apply to many elements, small CSS changes may have big code effects.

You can also fully leverage both Pug and Sass mixin and function support, allowing for some powerful patters, such as different styling based on running Android or iOS.

Making it Reactive

Flutter-view does not force you into any particular Reactive model. For example it works well with streams. However, it comes with native ScopedModel support and a small Dart support library for terse reactive coding:

user.dart
class User extends Model {
    User({this.name, this.age});

    String name;
    int age;
}

The view (hello.pug) takes a User (user.dart) as a parameter and watches it for changes. Now when we change the the user name and call user.notifyListeners(), the view will automatically update.

Last updated