More Accessible Focus Indicators with Compose
Last summer, I wrote a blog post about focus management with Compose. Ever since, I’ve had drafts of...
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 201004) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Eevis Posted on Apr 30 • Originally published at eevis.codes More Accessible Focus Indicators with Compose #android #a11y #mobile #programming Focus (2 Part Series) 1 It's All About (Accessibility) Focus And Compose 2 More Accessible Focus Indicators with Compose Last summer, I wrote a blog post about focus management with Compose. Ever since, I’ve had drafts of this post, but I didn’t get to finalize it until now.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).