blob: f42480ddb08cb1051c08af25b1c90e035aeaa0b1 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:math' as math;
import 'package:flutter/material.dart';
import 'package:lib.app.dart/logging.dart';
void main() {
setupLogger(name: 'mondrianTest');
Color randomColor =
Color(0xFF000000 + math.Random().nextInt(0xFFFFFF));
runApp(MaterialApp(
title: 'Mondrian Test',
home: Container(
color: randomColor,
),
theme: ThemeData(canvasColor: randomColor),
));
}