えぐろぐ

https://twitter.com/eggpogg

2021-01-13から1日間の記事一覧

Nuxt x TypeScriptでStoreで自作プラグインの使う方法

this.$zisakuに返す型を定義して、interface Storeに渡してあげれば良い // plugins/zisaku.ts import { Plugin } from '@nuxt/types' export interface Zisaku { hoge: () => void fuga: string } const zisaku = { hoge: () => { console.log('hoge') }, f…

AndroidのTextInputLayoutが表示できなかった時の対応

Activityを持たないViewだけの生成で com.google.android.material.textfield.TextInputLayout を使おうと思った時に以下のエラーが発生した。 Caused by: java.lang.IllegalArgumentException: The style on this component requires your app theme to be …