2024-08-01から1ヶ月間の記事一覧
Intelli Jでのパスを確認する。 gradle.properties にはGradleバージョン distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip gradle/wrapper/gradle-wrapper.properties には /usr/libexec/java_home -v 11 の結果を org.grad…
flutter packages pub publish でのエラー。 以下のエラー Then click "Allow access". Waiting for your authorization... Authorization received, processing... Successfully authorized. Uploading... Failed to scan tar archive. (Entry "example/ios…
SharedPreferencesの型ごとにやるの面倒くさいからこれで型を意識しなくていいような? prefs_manager.dart class PrefsManager { final SharedPreferences _prefs; PrefsManager(this._prefs); Future<void> save<T>(String key, T value) async { if (value is Stri</t></void>…
windows/runner/keyboard_mode.cpp #include <windows.h> #include <iostream> extern "C" __declspec(dllexport) void SetKeyboardToEnglish() { // Load the English (United States) keyboard layout HKL hkl = LoadKeyboardLayout(TEXT("00000409"), KLF_ACTIVATE); // Englis</iostream></windows.h>…
windows/runner/keyboard_mode.cpp #include <windows.h> #include <iostream> extern "C" __declspec(dllexport) void SetKeyboardToEnglish() { // Load the English (United States) keyboard layout HKL hkl = LoadKeyboardLayout(TEXT("00000409"), KLF_ACTIVATE); if (hkl =</iostream></windows.h>…
import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: MyHomePage(), ); } } class MyHomePage extends StatefulW…
LicensePage 自体はそのままにしたい時は こんな感じに MaterialPageRoute で包めばThmeのみ変更をいける。 onPressed: () { Navigator.push( context, MaterialPageRoute<LicensePage>( builder: (BuildContext context) { return Theme( data: ThemeData.light(), child</licensepage>…
import 'package:flutter/foundation.dart'; // LicenseRegistryを使用するために必要 import 'package:flutter/material.dart'; class CustomLicensePage extends StatelessWidget { const CustomLicensePage({super.key}); @override Widget build(BuildCo…
Future<void> signInWithCustomToken(String customToken) async { try { UserCredential userCredential = await FirebaseAuth.instance.signInWithCustomToken(customToken); print('Successfully signed in with custom token: ${userCredential.user.uid}'); }</void>…
I swapped my car for a motorbike when I moved to the city. 都会に引っ越したとき、車からバイクに替えた。 これで混乱した。 常に A→B かな? 手放したのはA、手に入れたのはB I switched A to B. この表現は文法的には不自然ですが、一般的には「AをBに…