dosomder

Results 48 comments of dosomder

You can use ObservableArray for this https://docs.nativescript.org/ns-framework-modules/observable-array

Thanks a lot for your reply. I did actually use the reverse flag from this example here: https://vuejs.org/v2/guide/transitions.html#Dynamic-Transitions in my real app ``` .bounce-enter-active { animation: bounce-in .5s; } .bounce-leave-active...

@rigor789 Could you confirm if this is a bug or a problem on my side? I made a picture to visualize the problem. In this case transition in nativescript-vue is...

Yes, I will try that. I am still working on the behavior of iOS. I want it to match the Android version. Also need to work on the delete (backspace)...

I have very limited time to work on this but still really interested to have it available in the official repo. The only thing I was thinking about is currently...

It does work for me. I use `text.decode=""` and Nativescript-vue

Also happening on the Honor 9 with 8.0 Tombstone from crash attached [tombstone_01.txt](https://github.com/rovo89/Xposed/files/1757831/tombstone_01.txt)

@rovo89 Is only one line removed from this file? In libart.so I can't find these three ``` 71: V(JniMethodFastStart, uint32_t, Thread*) \ 74: V(JniMethodFastEnd, void, uint32_t, Thread*) \ 77: V(JniMethodFastEndWithReference,...

@rovo89 Maybe I'm wrong, here is this code: https://android.googlesource.com/platform/art/+/master/runtime/entrypoints/quick/quick_entrypoints.h#45 ``` struct PACKED(4) QuickEntryPoints { #define ENTRYPOINT_ENUM(name, rettype, ...) rettype ( * p ## name )( __VA_ARGS__ ); #include "quick_entrypoints_list.h" QUICK_ENTRYPOINT_LIST(ENTRYPOINT_ENUM)...

@rovo89 well in thread.h class there was this field also added (8.1): https://android.googlesource.com/platform/art/+/master/runtime/thread.h#162 ``` static constexpr bool kVerifyStack = kIsDebugBuild; ``` Maybe this is the other 4 bytes? And for...