-
The next SDK version 10.0.0 is still in the making and they are fixing the latest bugs and add more features like 'Ti.UI.SearchBar to use native SearchView' https://github.com/appcelerator/titanium_mobile/pull/12565 that will use the Material look and adds autocapitalization, autocorrect, iconified, iconifiedByDefault.
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
titanium-rounded-tab-group
A lightweight module to apply a native rounded tab groups (no custom view) in Appcelerator Titanium.
With Titanium-rounded-tab-group you can create a rounded TabGroup by just adding the module! Well done @hansemannn 👍
-
And if you are already browsing his repositories: have a look at the Play billing demo if you want to use Google Play Billing in your app.
-
Are you using Ti.oAuth2 by @adamtarmstrong? Be sure to checkout the PR by caspahouzer: https://github.com/adamtarmstrong/ti.oauth2/pull/1 It adds a modal window on iOS and logout functionality.
-
https://github.com/mbender74/clipview/ - Simple Android View module for Appcelerator Titanium that can draw outside of bounds
-
https://github.com/mbender74/titaniium.android.bottomsheet - a modified bottomsheet module with custom colors for Android
-
For all the Atom users: check out the file-icons package. I've added colors to the TSS files so your file tree looks nicer 😉
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
A interesting approach for preview images: BlurHash. You create a small hash string out of your images like LEHV6nWB2yk8pyoJadR*.7kCMdnj and when you load it with BlurHash it will create a blured preview. So instead of loading a big remote image right away or having empty grey boxes you can show a colorful preview image and replace it with your image once it is loaded. There is no Titanium module yet but looking at the code bitmap = BlurHashDecoder.decode(etInput.text.toString(), 20, 12) for Android looks like an easy job for Hyperloop 😉 If you create it feel free to post the code in the comments.