Files
yifeng.yl 2e9702ec7b add file
2019-01-08 20:39:13 +08:00

23 lines
465 B
Dart

import 'package:flutter/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,
)
],
);
}
}