stitched_stack 1.0.1 copy "stitched_stack: ^1.0.1" to clipboard
stitched_stack: ^1.0.1 copied to clipboard

A flutter library providing a way to stich a size-bound stack onto a widget

example/example.dart

import 'package:flutter/material.dart';
import 'package:stitched_stack/src/widget.dart';

void main() {
  TextEditingController fieldController = TextEditingController();

  runApp(MaterialApp(
    home: Scaffold(
      body: Padding(
        padding: const EdgeInsets.all(32.0),
        child: ListView(
          children: [
            StitchedStack(
              stitch: TextField(
                  controller: fieldController, maxLines: 999, minLines: 1),
              children: [
                Positioned(
                    bottom: 0,
                    right: 0,
                    child: Container(color: Colors.red, width: 50, height: 50))
              ],
            )
          ],
        ),
      ),
    ),
  ));
}
7
likes
140
pub points
0%
popularity

Publisher

verified publisherhelight.dev

A flutter library providing a way to stich a size-bound stack onto a widget

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on stitched_stack