万年素人からHackerへの道

万年素人がHackerになれるまで殴り書きするぜ。

  • ・資産運用おすすめ
    10万円は1000円くらい利益
    資産運用ブログ アセマネ
    • ・寄付お願いします
      YENTEN:YYzNPzdsZWqr5THWAdMrKDj7GT8ietDc2W
      BitZenny:ZfpUbVya8MWQkjjGJMjA7P9pPkqaLnwPWH
      c0ban:8KG95GXdEquNpPW8xJAJf7nn5kbimQ5wj1
      Skycoin:KMqcn7x8REwwzMHPi9fV9fbNwdofYAWKRo

    2020-09-01から1ヶ月間の記事一覧

    flutter_webview_pluginでJS側からFlutterの関数を呼び出す

    これが参考になる https://cyublog.com/articles/flutter-ja/flutter-webview-plugin/ FlutterAppは任意の文字 WebView内のJavaScript FlutterAppが勝手にできてる? hoge_barが送られる文字。これを色々やれば統一感あるコードになりそう。 if (typeof Flut…

    オプショナルのnil入ってるのはアンラップでエラー

    わかりやすい記事 どこよりも分かりやすいSwiftの"?"と"!" - Qiita https://tech.pjin.jp/blog/2016/06/24/%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%8A%E3%83%AB%E5%9E%8B%E3%81%AE%E5%BE%A9%E7%BF%92%E3%81%9D%E3%81%AE4/ Thread 1: Fatal error: Unexp…

    Swiftの Unable to simultaneously satisfy constraints.の警告

    [LayoutConstraints] Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2)…

    QCEngine

    ・QCEngine oreilly-qc.github.io ・GitHub github.com ・Qiskit https://qiskit.org/ ・StackExcangeコミュニティ Quantum Computing Stack Exchange

    SingleScrollViewの中のGridViewでスクロールがおかしい

    https://www.devsplanet.com/question/flutter-singlechildscrollview-doesn-39-t-work-with-columns-and-grid-view-why GridView.count( physics: const NeverScrollableScrollPhysics(), ... ), これで解決したw

    Androidのスプラッシュ(Splash)で、ある端末はずれる

    ReactNativeのStackOverflowだがこんなのある react native - Android Splash Screen shifts - Stack Overflow CordovaのIssueだが https://github.com/apache/cordova-android/issues/844 多分特殊なborderless devicesなAndroid端末のせい? android/app/s…

    FlutterのWebViewでキーボードがDoneが英語のまま

    あの憎きInfo.plistのCFBundleDevelopmentRegionをいじらないと駄目 ios/Runner/Info.plistを開き、 <key>CFBundleDevelopmentRegion</key> <string>ja_JP</string> Xcode上では、このように選べる。 おまけ flutter_webview_pluginというプラグインを使っていて、 WebviewScaffoldのhead…

    Flutter:プラグインのバージョン指定

    dart.dev https://qrunch.net/@takopom55/entries/ud0qBb5RWfQ0Q0hk

    Flutterでのスプラッシュの話

    ・3つの場所 Flutter製AndroidアプリできちんとSplashを設定する - メモ2ブログ ・ズレのやつ Android stackoverflow.com android:windowBackground 関係あるの?

    証明書の更新 Developer iPhone

    dev.classmethod.jp

    Flutterで非推奨のときのを細かく

    FlutterFirebaseInstanceIDService.java:21: error: cannot find symbol LocalBroadcastManager.getInstance(context).sendBroadcast(intent); FlutterFirebaseInstanceIDService.java uses or overrides a deprecated API. Note: Recompile with -Xlint:dep…

    Flutterでスーパーキャッシュクリア

    これやればいいだろー。 flutter clean rm .packages rm -rf ~/Library/Developer/Xcode/DerivedData rm ios/Podfile.lock rm -rf ios/Runner.xcworkspace/ cd ios pod deintegrate pod install open ./Runner.xcworkspace/ またはFVMなら .fvm/flutter_sdk/…

    FlutterのAndroidのステータスバーの上部の変な半透明を消す

    main.dartにこれいれる Future<void> main() async { WidgetsFlutterBinding.ensureInitialized(); // ステータスバーの上部の変な半透明を消す SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle( statusBarColor: Colors.transparent, )); なぜこれデ</void>…

    firebase_messagingのプラグインのKotlinのフルコード

    android/app/src/main/kotlin/jp/company/app/Application.kt package jp.company.app import io.flutter.app.FlutterApplication import io.flutter.plugin.common.PluginRegistry import io.flutter.plugin.common.PluginRegistry.PluginRegistrantCallbac…

    flutter_local_notificationsについて

    flutter_local_notificationsをカスタム通知と連携で利用するかと思うが、 schedule や show()を一回呼ぶ縛りがあった。単に登録できない。 flutter_local_notifications: ^1.4.4+4 を使ってた。 github.com しかし、解決は時間を無限というか厳密にはだいぶ…