Answers for "transformer flutter"

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

Code answers related to "transformer flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language