I m confused about what is different between FractionalOffset and Alignment .. I see them doing the same .. check my example code to understand me :
Example 1:
final fractionalOffset = Container(
margin: EdgeInsets.symmetric(
vertical: 16,
),
alignment: FractionalOffset.bottomLeft,
child: Image(
image: AssetImage("example1"),
height: 92,
width: 92,
),
);
Example 2:
final alignment = Container(
margin: EdgeInsets.symmetric(
vertical: 16,
),
alignment: Alignment.bottomLeft,
child: Image(
image: AssetImage("example2"),
height: 92,
width: 92,
),
);