Home

iOS Universal Link

iOS Universal Link 放在https://www.saanw.com/.well-known/apple-app-site-association scheme 配置可以跳转的 url scheme(下例为tobias配置) CFBundleURLTypes CFBundleTypeRole Editor CFBundleURLName alipay CFBundleURLSchemes chuoooo Reference Apple Universal Link setup in iOS

Read more

Tabbar andd PageView

Tabbar andd PageView import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: MyTabbedPage(), ); } } class MyTabbedPage extends StatefulWidget { @override _MyTabbedPageState createState() =&...

Read more

iOS 国际化

iOS 国际化 App Name Roll back those changes, add a InfoPlist.strings file to your project, localize it and then add the needed keys to it. For example: “CFBundleDisplayName” = “App display name”; “CFBundleName” = “App bundle name”; To localized Info.plist : Find in the x-code the folder Resources (is placed in root) Select the folder Resources...

Read more

Android CPU架构

Android CPU架构 ARM架构: 32 位:lib/armeabi-v7a、lib/armeabi 64 位:lib/arm64-v8a x86架构: 32 :lib/x86 64 :lib/x86_64 Reference

Read more

Reading

Reading 高成效 Active Recall Practice Tests 中成效 Etc 低成效 Summarizing Highlighting Rereading Passive reading Reference

Read more

Uniapp view

Uniapp modal modal const modal = uni.requireNativePlugin('modal'); modal.toast({ message: ret, duration: 1.5 }); Reference

Read more