Skip to content

Instantly share code, notes, and snippets.

@flippingbitss
Created February 23, 2020 23:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flippingbitss/0ebd6d8820c9690b0f5eb311c7725d89 to your computer and use it in GitHub Desktop.
Save flippingbitss/0ebd6d8820c9690b0f5eb311c7725d89 to your computer and use it in GitHub Desktop.
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