nester 0.0.2 copy "nester: ^0.0.2" to clipboard
nester: ^0.0.2 copied to clipboard

outdated

A library to make the code more readable

nester #

Flutter library to automatically convert a list of widgets in a nested group of widget. This is just different way to view the code "in list" instead the default "nested" widgets pattern.

Features #

  • Ease the code reading

Installation #

  • Add the dependency
dependencies:
  nester: ^0.0.2
  • Import the package
import 'package:nester/nester.dart';

Example Usage #

Original code

return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: const Text("Example"),
        ),
        body: Padding(
          padding: const EdgeInsets.all(20),
          child: Container(
            color: Colors.black12,
            child: Center(
              child: Column(
                mainAxisAlignment: MainAxisAlignment.center,
                children: const <Widget>[Text("Just a description")],
              ),
            ),
          ),
        ),
      ),

Using Nester

return Nester(
    [
        (next) => MaterialApp(
              title: 'Flutter Demo',
              theme: ThemeData(primarySwatch: Colors.blue),
              home: next,
            ),
        (next) => Scaffold(
              appBar: AppBar(title: const Text("Example")),
              body: next,
            ),
        (next) => Padding(
              padding: const EdgeInsets.all(20),
              child: next,
            ),
        (next) => Container(
              color: Colors.black12,
              child: next,
            ),
        (next) => Center(child: next),
        (_) => Column(
              mainAxisAlignment: MainAxisAlignment.center,
              children: const <Widget>[Text("Just a text")],
            ),
  ]
);
4
likes
0
pub points
35%
popularity

Publisher

unverified uploader

A library to make the code more readable

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on nester