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))
              ],
            )
          ],
        ),
      ),
    ),
  ));
}
8
likes
160
points
30
downloads

Publisher

verified publisherexperiments.helight.dev

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on stitched_stack