李博雅

Results 19 comments of 李博雅

@murphkev Thank you very much! I'll give it a try

> 同样这个问题,你解决了吗 没有解决, 最终还是用的老版本

> Please check if the app is allowed to display notifications in the settings. How to apply for notification permission within the program? It is turned off by default

same problem. https://github.com/jonataslaw/getx/issues/2621#issuecomment-2604249471 Here is a temporary solution provided

same issue ``` class Logic extends GetxController { RxList testList = RxList(); @override void onInit() { super.onInit(); testList(List.filled(10, Test())); } } ``` Repeated entry and exit, infinite increase in Test...

get: ^4.7.2 First entry: ![Image](https://github.com/user-attachments/assets/1e18349d-5fc6-4037-bbb6-fecca8414026) Second entry: ![Image](https://github.com/user-attachments/assets/6580483b-962d-4e40-ab25-c6bd0c6304bd) After controller deleted from memory, The RxList in the controller has not released, Obx and Stream counts is also increasing!

I hope this PR will be merged, i need affect size animation

> > ă的unicode码:[259] ǎ的unicode码:[462] 两个a长的差不多, 但是不是一样字符. > > 请问是怎么解决的,我也遇到了 这个库生成的拼音, 只有3声的编码不对, 把源码中的ăĕĭŭŏ替换成ǎěǐǔǒ, 或者在使用端转换一下 参考: ```dart var wordPinyin = word.pinyin!.trim().replaceAllMapped(RegExp(r'[ăĕĭŭŏ]'), (Match match) { if (match[0]! == 'ă') return 'ǎ'; if (match[0]!...