I am Rich
I am Rich is a application developed as joke by a German developer, Armin Heinrich after he saw iphone users complaining the software price above $0.99. It application only consists of glowing red gem and an icon that, when pressed, displayed the following mantra text:
I am Rich
I deserve it
I am good,
healthy & successful
This application was placed at the price of US$999.99 and eight people buy this application from appstore.
Code for this simple application is below.
import 'package:flutter/material.dart';
void main() {
runApp(ImRich());
}
class ImRich extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: Colors.blueGrey,
appBar: AppBar(
backgroundColor: Colors.blueGrey[900],
title: Center(
child: Text(
'I am RICH!',
style: TextStyle(
color: Colors.white,
letterSpacing: 3.0,
),
),
),
),
body: Center(
child: Image(
image: AssetImage('images/diamond.png'),
),
),
),
);
}
}