Transform.translate(
offset: const Offset(10.0,10.0),
child: const Text('Transform'),
),
Transform.scale( scale: 0.5, origin: Offset(50.0, 50.0), child: Container( height: 100.0, width: 100.0, color: Colors.blue, ),),