Kosuke Saigusa
Kosuke Saigusa
Thank you for your message, @bparrishMines. Now I updated the CHANGELOG.md in this commit: https://github.com/flutter/plugins/pull/6102/commits/cec0ebcbc33ce08a6a75c95c10edeb5ca7f9371b
@bparrishMines Thank you. Resolved the conflict and updated the grammar.
@narunblog かんたんですが、ワーカー情報入力の Figma 書きました!
それから、大したファイルではなさそうですがコンフリクトが起きているのでマージする前に解消が必要です! もし困ったら一緒に見るので声かけてください!
.of(context みたいなの何回も書くのが面倒なのでそのシンタックスシュガーとして ```dart extension BuildContextExtension on BuildContext { /// テーマ ThemeData get theme => Theme.of(this); /// テキストのテーマ TextTheme get textTheme => Theme.of(this).textTheme; /// ディスプレイサイズ Size get displaySize => MediaQuery.of(this).size; }...
地味だけど何回も書くのでこんなのを今日仕事で作りました。 ```dart extension StringExtension on String { /// 空文字の場合は指定した文字で代替する String ifIsEmpty(String placeholder) { return isEmpty ? placeholder : this; } } ```
日本の郵便番号・電話番号をハイフンで区切る
```dart extension ListExtension on List { /// List を List に変換する。 /// List を as List で変換できないため。 List get toMaps { final maps = []; for (final e in this)...
```dart import 'package:intl/intl.dart'; extension DateTimeExtension on DateTime { String toYYYYMMDD({String delimiter = '-'}) => DateFormat('yyyy${delimiter}MM${delimiter}dd').format(this); /// String toYYYYMMDDHHMM({String delimiter = '-'}) => DateFormat('yyyy${delimiter}MM${delimiter}dd HH:mm').format(this); } ```
Thank you for your comment @junki-pw! I will take a look at the new features in Cloud Firestore SDK! And of course your PRs are always welcome!