1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| import 'dart:async';
import 'package:flutter/material.dart'; import 'package:rotated_view/rotated_view.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); }
class _MyAppState extends State<MyApp> { StreamSubscription _subscription;
@override void initState() { super.initState(); }
@override void dispose() { if (_subscription != null) { _subscription.cancel(); } super.dispose(); }
@override Widget build(BuildContext context) { return MaterialApp( color: Colors.black, home: Scaffold( body: Center( child: Column( children: <Widget>[ Padding( padding: EdgeInsets.fromLTRB(0, 100, 0, 0), ), Container( width: 400, height: 400, child: RotatedView( child: Image.asset("images/launcher_background.png"), usesensor: false, issame: false, haveinertia: true, ), ), Text(""), ], )), ), ); } }
|