Skip to the content.

百格齐放 - 2020/12/02

同时实现两种布局,要求如下:

随机颜色生成器:

import 'dart:math' as math;

class RandomColor {
  const RandomColor._();

  static final math.Random _random = math.Random();

  static Color getColor() {
    return Color.fromARGB(
      255,
      _random.nextInt(255),
      _random.nextInt(255),
      _random.nextInt(255),
    );
  }
}

加分项: