Dice app complete source code
Dice app complete source code GitHub Repo : https://github.com/vkrngn/Dicee-Flutter-Completed.git import 'dart:math' ; import 'package:flutter/material.dart' ; void main () { return runApp( MaterialApp ( home: Scaffold ( backgroundColor: Colors. red , appBar: AppBar ( title: Text ( 'Dicee' ) , backgroundColor: Colors. red , ) , body: DicePage () , ) , ) , ) ; } class DicePage extends StatefulWidget { @override _DicePageState createState () => _DicePageState () ; } class _DicePageState extends State<DicePage> { int leftDiceNumber = 1 ; int rightDiceNumber = 1 ; void changeDiceFace (){ leftDiceNumber = Random ().nextInt( 6 ) + 1 ; rightDiceNumber = Random ().nextInt( 6 ) + 1 ; } @override Widget build (BuildContext context) { return Center ( child: Row ( children: <Widget>[ Expanded ( child: FlatButton ( ...