align_positioned 1.0.6 copy "align_positioned: ^1.0.6" to clipboard
align_positioned: ^1.0.6 copied to clipboard

outdated

A widget that aligns and positions its child within itself.

example/main.dart

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

void main() async => runApp(MaterialApp(home: Demo()));

class Demo extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    //

    return Scaffold(
      appBar: AppBar(title: const Text('Align Positioned Widget Example')),
      body: Center(
        child: SingleChildScrollView(
          child: Column(
            children: <Widget>[
              SizedBox(height: 50, width: double.infinity),
              //
              Container(
                  width: 150,
                  height: 150,
                  color: Colors.yellow,
                  child: Stack(children: circlesInside())),
              //
              SizedBox(height: 50, width: double.infinity),
              //
              Container(
                  width: 150,
                  height: 150,
                  color: Colors.yellow,
                  child: Stack(children: circlesOutside())),
              //
              SizedBox(height: 60),
              //
              Container(
                  width: 150,
                  height: 150,
                  color: Colors.yellow,
                  child: Stack(children: circlesWithOffset())),
              SizedBox(height: 100),
              //
              Container(
                  width: 150,
                  height: 150,
                  color: Colors.yellow,
                  child: Stack(children: circlesWithNamedAlignments())),
              //
              SizedBox(height: 50),
              //
              Container(
                  width: 150,
                  height: 150,
                  color: Colors.yellow,
                  child: Stack(children: circlesWithchildWidthAndchildHeightInside())),
              //
              SizedBox(height: 50),
              //
              Container(
                  width: 150,
                  height: 150,
                  color: Colors.yellow,
                  child: Stack(children: circlesWithchildWidthAndchildHeightOutside())),
              //
              SizedBox(height: 80),
              //
              Container(
                width: 150,
                height: 150,
                color: Colors.red,
                child: Stack(
                  children: <Widget>[
                    AlignPositioned(
                      touch: Touch.inside,
                      alignment: Alignment.topLeft,
                      dx: 15.0,
                      childWidth: -0.5,
                      childHeight: -0.5,
                      child: circle(Color(0x50000000), 60.0),
                    ),
                    AlignPositioned(
                      touch: Touch.inside,
                      alignment: Alignment.topLeft,
                      dx: 15.0,
                      childWidth: -0.5,
                      childHeight: -0.5,
                      child: circle(Colors.white, 5.0),
                    ),
                  ],
                ),
              ),
              //
              SizedBox(height: 50),
              //
              Container(
                width: 150,
                height: 150,
                color: Colors.red,
                child: Stack(
                  children: <Widget>[
                    AlignPositioned(
                      touch: Touch.inside,
                      alignment: Alignment.topLeft,
                      dx: 15.0,
                      childWidth: -0.5,
                      childHeight: -0.5,
                      containerWidth: 1,
                      containerHeight: 1,
                      child: circle(Color(0x50000000), 60.0),
                    ),
                    AlignPositioned(
                      touch: Touch.inside,
                      alignment: Alignment.topLeft,
                      dx: 15.0,
                      childWidth: -0.5,
                      childHeight: -0.5,
                      containerWidth: 1,
                      containerHeight: 1,
                      child: circle(Colors.white, 5.0),
                    ),
                  ],
                ),
              ),
              //
              SizedBox(height: 50),
            ],
          ),
        ),
      ),
    );
  }

  List<Widget> circlesWithchildWidthAndchildHeightInside() {
    var children1 = <Widget>[];
    children1.addAll(circles(Colors.red, Touch.inside, 0, -1, childWidth: 0.0, childHeight: 0.0));
    children1.addAll(circles(Colors.blue, Touch.inside, 0, -1, childWidth: 1.0, childHeight: 0.0));
    children1
        .addAll(circles(Colors.green, Touch.inside, 0, -1, childWidth: -1.0, childHeight: 0.0));

    children1.addAll(circles(Colors.red, Touch.inside, 1, 0, childWidth: 0.0, childHeight: 0.0));
    children1.addAll(circles(Colors.blue, Touch.inside, 1, 0, childWidth: 0.0, childHeight: 1.0));
    children1.addAll(circles(Colors.green, Touch.inside, 1, 0, childWidth: 0.0, childHeight: -1.0));

    children1.addAll(circles(Colors.red, Touch.inside, 0, 1, childWidth: 0.0, childHeight: 0.0));
    children1.addAll(circles(Colors.blue, Touch.inside, 0, 1, childWidth: 1.0, childHeight: 0.0));
    children1.addAll(circles(Colors.green, Touch.inside, 0, 1, childWidth: -1.0, childHeight: 0.0));

    children1.addAll(circles(Colors.red, Touch.inside, -1, 0, childWidth: 0.0, childHeight: 0.0));
    children1.addAll(circles(Colors.blue, Touch.inside, -1, 0, childWidth: 0.0, childHeight: 1.0));
    children1
        .addAll(circles(Colors.green, Touch.inside, -1, 0, childWidth: 0.0, childHeight: -1.0));
    return children1;
  }

  List<Widget> circlesWithchildWidthAndchildHeightOutside() {
    var children1 = <Widget>[];
    children1.addAll(circles(Colors.red, Touch.outside, 0, -1, childWidth: 0.0, childHeight: 0.0));
    children1.addAll(circles(Colors.blue, Touch.outside, 0, -1, childWidth: 1.0, childHeight: 0.0));
    children1
        .addAll(circles(Colors.green, Touch.outside, 0, -1, childWidth: -1.0, childHeight: 0.0));

    children1.addAll(circles(Colors.red, Touch.outside, 1, 0, childWidth: 0.0, childHeight: 0.0));
    children1.addAll(circles(Colors.blue, Touch.outside, 1, 0, childWidth: 0.0, childHeight: 1.0));
    children1
        .addAll(circles(Colors.green, Touch.outside, 1, 0, childWidth: 0.0, childHeight: -1.0));

    children1.addAll(circles(Colors.red, Touch.outside, 0, 1, childWidth: 0.0, childHeight: 0.0));
    children1.addAll(circles(Colors.blue, Touch.outside, 0, 1, childWidth: 1.0, childHeight: 0.0));
    children1
        .addAll(circles(Colors.green, Touch.outside, 0, 1, childWidth: -1.0, childHeight: 0.0));

    children1.addAll(circles(Colors.red, Touch.outside, -1, 0, childWidth: 0.0, childHeight: 0.0));
    children1.addAll(circles(Colors.blue, Touch.outside, -1, 0, childWidth: 0.0, childHeight: 1.0));
    children1
        .addAll(circles(Colors.green, Touch.outside, -1, 0, childWidth: 0.0, childHeight: -1.0));
    return children1;
  }

  List<Widget> circlesInside() {
    var children1 = <Widget>[];
    children1.addAll(circles(Colors.red, Touch.inside, 0, -1));
    children1.addAll(circles(Colors.red, Touch.inside, -1, 0));
    children1.addAll(circles(Colors.red, Touch.inside, 0, 1));
    children1.addAll(circles(Colors.red, Touch.inside, 1, 0));
    children1.addAll(circles(Colors.blue, Touch.inside, -1, -1));
    children1.addAll(circles(Colors.blue, Touch.inside, -1, 1));
    children1.addAll(circles(Colors.blue, Touch.inside, 1, 1));
    children1.addAll(circles(Colors.blue, Touch.inside, 1, -1));
    return children1;
  }

  List<Widget> circlesOutside() {
    var children1 = <Widget>[];
    children1.addAll(circles(Colors.red, Touch.outside, 0, -1));
    children1.addAll(circles(Colors.red, Touch.outside, -1, 0));
    children1.addAll(circles(Colors.red, Touch.outside, 0, 1));
    children1.addAll(circles(Colors.red, Touch.outside, 1, 0));
    children1.addAll(circles(Colors.blue, Touch.outside, -1, -1));
    children1.addAll(circles(Colors.blue, Touch.outside, -1, 1));
    children1.addAll(circles(Colors.blue, Touch.outside, 1, 1));
    children1.addAll(circles(Colors.blue, Touch.outside, 1, -1));
    return children1;
  }

  List<Widget> circlesWithOffset() {
    var children2 = <Widget>[];
    children2.addAll(circles(Colors.purple, Touch.outside, 0, -1, dx: -15, dy: 15));
    children2.addAll(circles(Colors.purple, Touch.outside, -1, 0, dx: -15, dy: 15));
    children2.addAll(circles(Colors.purple, Touch.outside, 0, 1, dx: -15, dy: 15));
    children2.addAll(circles(Colors.purple, Touch.outside, 1, 0, dx: -15, dy: 15));
    children2.addAll(circles(Colors.green, Touch.inside, 0, -1, dx: -15, dy: 15));
    children2.addAll(circles(Colors.green, Touch.inside, -1, 0, dx: -15, dy: 15));
    children2.addAll(circles(Colors.green, Touch.inside, 0, 1, dx: -15, dy: 15));
    children2.addAll(circles(Colors.green, Touch.inside, 1, 0, dx: -15, dy: 15));

    return children2;
  }

  List<Widget> circles(
    Color color,
    Touch touch,
    int dirX,
    int dirY, {
    double dx,
    double dy,
    double childWidth,
    double childHeight,
  }) {
    return <Widget>[
      alignPositionedCircle(0.0, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
      alignPositionedCircle(0.1, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
      alignPositionedCircle(0.2, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
      alignPositionedCircle(0.3, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
      alignPositionedCircle(0.4, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
      alignPositionedCircle(0.5, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
      alignPositionedCircle(0.6, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
      alignPositionedCircle(0.7, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
      alignPositionedCircle(0.8, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
      alignPositionedCircle(0.9, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
      alignPositionedCircle(1.0, color, dirX, dirY, touch, dx, dy, childWidth, childHeight),
    ];
  }

  List<Widget> circlesWithNamedAlignments() {
    return <Widget>[
      AlignPositioned(
          child: circle(Colors.orange), alignment: Alignment.center, touch: Touch.inside),
      AlignPositioned(
          child: circle(Colors.orange), alignment: Alignment.center, touch: Touch.outside),

      //
      AlignPositioned(
          child: circle(Colors.green), alignment: Alignment.centerRight, touch: Touch.inside),
      AlignPositioned(
          child: circle(Colors.green), alignment: Alignment.bottomCenter, touch: Touch.inside),
      AlignPositioned(
          child: circle(Colors.green), alignment: Alignment.centerLeft, touch: Touch.inside),
      AlignPositioned(
          child: circle(Colors.green), alignment: Alignment.topCenter, touch: Touch.inside),
      //
      AlignPositioned(
          child: circle(Colors.blue), alignment: Alignment.topRight, touch: Touch.inside),
      AlignPositioned(
          child: circle(Colors.blue), alignment: Alignment.bottomRight, touch: Touch.inside),
      AlignPositioned(
          child: circle(Colors.blue), alignment: Alignment.topLeft, touch: Touch.inside),
      AlignPositioned(
          child: circle(Colors.blue), alignment: Alignment.bottomLeft, touch: Touch.inside),
      //
      AlignPositioned(
          child: circle(Colors.red), alignment: Alignment.centerRight, touch: Touch.outside),
      AlignPositioned(
          child: circle(Colors.red), alignment: Alignment.bottomCenter, touch: Touch.outside),
      AlignPositioned(
          child: circle(Colors.red), alignment: Alignment.centerLeft, touch: Touch.outside),
      AlignPositioned(
          child: circle(Colors.red), alignment: Alignment.topCenter, touch: Touch.outside),
      //
      AlignPositioned(
          child: circle(Colors.purple), alignment: Alignment.topRight, touch: Touch.outside),
      AlignPositioned(
          child: circle(Colors.purple), alignment: Alignment.bottomRight, touch: Touch.outside),
      AlignPositioned(
          child: circle(Colors.purple), alignment: Alignment.topLeft, touch: Touch.outside),
      AlignPositioned(
          child: circle(Colors.purple), alignment: Alignment.bottomLeft, touch: Touch.outside),
    ];
  }

  AlignPositioned alignPositionedCircle(
    double mult,
    Color color,
    int dirX,
    int dirY,
    Touch touch,
    double dx,
    double dy,
    double childWidth,
    double childHeight,
  ) {
    return AlignPositioned(
        child: circle(color),
        alignment: Alignment(mult * dirX, mult * dirY),
        touch: touch,
        dx: dx,
        dy: dy,
        childWidth: childWidth,
        childHeight: childHeight);
  }

  Container circle(Color color, [double diameter = 30.0]) {
    return Container(
        width: diameter,
        height: diameter,
        decoration: BoxDecoration(
          border: Border.all(width: 1.0, color: Colors.black),
          color: color,
          shape: BoxShape.circle,
        ));
  }
}
252
likes
0
pub points
95%
popularity

Publisher

verified publisherglasberg.dev

A widget that aligns and positions its child within itself.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on align_positioned