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

outdated

A Flutter Widget which helps nest multiple widgets without needing to manually nest them.

example/example.dart

import 'package:flutter/material.dart';
import 'package:nested/nested.dart';

void main() {
  runApp(
    Nested(
      children: [
        const SingleChildContainer(color: Colors.red),
        SingleChildBuilder(
          builder: (context, child) => Center(child: child),
        ),
      ],
      child: const Text('Hello world', textDirection: TextDirection.ltr),
    ),
  );
}

class SingleChildContainer extends SingleChildStatelessWidget {
  const SingleChildContainer({Key key, this.color, Widget child})
      : super(key: key, child: child);

  final Color color;

  @override
  Widget buildWithChild(BuildContext context, Widget child) {
    return Container(
      color: color,
      child: child,
    );
  }
}
305
likes
0
pub points
98%
popularity

Publisher

verified publisherdash-overflow.net

A Flutter Widget which helps nest multiple widgets without needing to manually nest them.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on nested