Skip to content

Instantly share code, notes, and snippets.

View naonya3's full-sized avatar
🌴
On vacation

Naoto Horiguchi naonya3

🌴
On vacation
View GitHub Profile
@naonya3
naonya3 / dot_line.dart
Last active June 27, 2020 01:28
点線が描きたい2020
import 'package:flutter/material.dart';
class DotLine extends StatelessWidget {
const DotLine({
this.height = 6,
this.color = const Color.fromRGBO(232, 232, 232, 1),
this.spacing = 10,
});
final double height;
final Color color;
@naonya3
naonya3 / masakari.md
Created October 17, 2016 09:11
iOS10でのAPNSの知見です

アプリを起動してない状態からPush通知から起動

UNUserNotificationCenterDelegateの

userNotificationCenter(center: UNUserNotificationCenter, didReceiveNotificationResponse response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void)

を実装居ている場合は上記が呼ばれ、実装していない場合は

AppDelegateの