mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-23 07:46:46 +08:00
23 lines
465 B
Dart
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,
|
|
)
|
|
],
|
|
);
|
|
}
|
|
}
|