2021-11-07から1日間の記事一覧

flutter: 角丸ボーダー付きのボックスの右上にチェックマークを入れる

Container + BoxDecorationだと実現できなかったのでpaintしました。 本体 import 'package:flutter/material.dart'; class CheckableBox extends CustomPainter { CheckableBox({required this.isChecked}); final bool isChecked; @override void paint(Ca…

Dart: The Iterable.firstWhere method no longer accepts orElse: () => null.

https://dart.dev/null-safety/faq#the-iterablefirstwhere-method-no-longer-accepts-orelse---null と、FAQにも書いてありますが、 こっちはもちろんエラーになる void main(List<String> args) { final list = [1, 2, 3]; // The return type 'Null' isn't a 'int</string>…