Description
Magisk is a really nice tool - but unfortunately blind users can't use Magisk Manager fully since some of the UI elements don't provide textual hints for Google Talkback assistance.
For example: in Magisk Hide there is a list with checkboxes next to the app names - these checkboxes will only be announced as "unnamed control" and without and indication if the checkbox is checked, unchecked or partially checked. In addition there is at least one control which is not accessible at all: the "arrow" button which expands or collapses an app group in the Magisk Hide app list.
UI elements can provide a textual description for voice assistance in the android:contentDescription
property (see https://github.com/arnowelzel/periodical/blob/master/app/src/main/res/layout/main.xml as an example) or by setting the description with setContentDescription()
(see https://github.com/arnowelzel/periodical/blob/master/app/src/main/java/de/arnowelzel/android/periodical/CalendarCell.java as an example).