Files
2019-08-13 20:38:46 +08:00

23 lines
469 B
Dart

import 'package:flutter_web/material.dart';
class RotatedDemo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Column(
children: <Widget>[
RotatedBox(
child: const Text('hello flutter'),
quarterTurns: 3,
),
SizedBox(
height: 20.0,
),
RotatedBox(
child: const Text('hello flutter'),
quarterTurns: 8,
)
],
);
}
}