Created
February 23, 2020 23:21
-
-
Save flippingbitss/0ebd6d8820c9690b0f5eb311c7725d89 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
theme: ThemeData.dark() | |
.copyWith(scaffoldBackgroundColor: Color.fromARGB(255, 18, 32, 47)), | |
home: Scaffold( | |
body: Center( | |
child: SizedBox( | |
height: 200, | |
width: 200, | |
child: Blob( | |
color: Color(0xff0092ff), // color blue | |
scale: 1, | |
rotation: 0, | |
), | |
), | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment