Skip to content

Instantly share code, notes, and snippets.

View olaide-ekolere's full-sized avatar

Olaide Nojeem Ekeolere olaide-ekolere

View GitHub Profile
@olaide-ekolere
olaide-ekolere / main.dart
Last active May 31, 2020 16:47
A game of rock paper scissors using flutter
import 'package:flutter/material.dart';
import 'dart:math';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {