Answers for "flutter widget transform"

3

flutter transform

Container(
  color: Colors.black,
  child: Transform(
    alignment: Alignment.topRight,
    transform: Matrix4.skewY(0.3)..rotateZ(-math.pi / 12.0),
    child: Container(
      padding: const EdgeInsets.all(8.0),
      color: const Color(0xFFE8581C),
      child: const Text('Apartment for rent!'),
    ),
  ),
)
Posted by: Guest on August-30-2021
1

transform widget flutter

Transform.rotate(
  angle: -math.pi / 12.0,
  child: Container(
    padding: const EdgeInsets.all(8.0),
    color: const Color(0xFFE8581C),
    child: const Text('Apartment for rent!'),
  ),
)
Posted by: Guest on May-08-2020
0

what does translate do in transform widget fluter

Transform.scale(  scale: 0.5,  origin: Offset(50.0, 50.0),  child: Container(    height: 100.0,    width: 100.0,    color: Colors.blue,  ),),
Posted by: Guest on May-03-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language