Advertisement
joaopaulofcc

Untitled

Sep 9th, 2020
597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.50 KB | None | 0 0
  1. import "package:flutter/material.dart";
  2.  
  3. void main() => runApp(MyApp());
  4.  
  5. class MyApp extends StatelessWidget {
  6.  
  7.   @override
  8.   Widget build(BuildContext context) {
  9.  
  10.     return MaterialApp(title : "Exemplo 1",
  11.       home : Scaffold(
  12.         body : Center(
  13.           child : Row(
  14.             children : [
  15.               Text("Filho1"),
  16.               RotatedBox(quarterTurns : 3, child : Text("Filho2")),
  17.               Text("Filho3")
  18.             ]
  19.           )
  20.         )
  21.       )
  22.     );
  23.   }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement