<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Oluwaseun Salako</title>
    <description>The latest articles on DEV Community by Oluwaseun Salako (@salstein).</description>
    <link>https://dev.to/salstein</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F718970%2F0453a29e-bf71-43e8-9f2d-4148359578a2.png</url>
      <title>DEV Community: Oluwaseun Salako</title>
      <link>https://dev.to/salstein</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/salstein"/>
    <language>en</language>
    <item>
      <title>Apps for Everyone in Flutter</title>
      <dc:creator>Oluwaseun Salako</dc:creator>
      <pubDate>Sun, 24 Apr 2022 22:47:36 +0000</pubDate>
      <link>https://dev.to/salstein/apps-for-everyone-in-flutter-13ac</link>
      <guid>https://dev.to/salstein/apps-for-everyone-in-flutter-13ac</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;Accessibility&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;For your mobile app to be successful, you need to make sure that it can reach the widest possible audience.​&lt;br&gt;
When more people have access to your app, it will boost your download rates and ultimately increase your total profits.​&lt;br&gt;
But in order for your app to reach everyone, it has to be accessible. So what exactly is mobile accessibility?​&lt;br&gt;
According to the Web Accessibility Initiative (WAI), &lt;strong&gt;it means that you’re making your mobile app more accessible to users with disabilities.&lt;/strong&gt; ​&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Approximately 15% of the world's population lives with some forms of disability.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Who needs an accessible Mobile app?&lt;/strong&gt;&lt;br&gt;
As I previously stated, accessible mobile applications are for people with disabilities.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Forms of Disability&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Vision&lt;/li&gt;
&lt;li&gt;Hearing&lt;/li&gt;
&lt;li&gt;Mobility&lt;/li&gt;
&lt;li&gt;Literacy&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Vision Disability&lt;/strong&gt;&lt;br&gt;
Users coping with some kind of visual impairment experience the most difficulty using a mobile application that is not adapted to them. &lt;strong&gt;Color blindness&lt;/strong&gt;, &lt;strong&gt;vision loss&lt;/strong&gt;, or &lt;strong&gt;even complete blindness&lt;/strong&gt; are three major impairments.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;An estimated 253 million people live with vision impairment: 36 million are blind and 217 million have moderate to severe vision impairment&lt;/em&gt; &lt;a href="https://uxdesign.cc/color-blindness-in-user-interfaces-66c27331b858"&gt;here...&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Color Blindness&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Challenges&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Not being able to differentiate between colors.&lt;/li&gt;
&lt;li&gt;Affects 8% of male population, 0.5% women.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;How to help&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use Color and Icons to convey messages.&lt;/li&gt;
&lt;li&gt;Options to change color.&lt;/li&gt;
&lt;li&gt;Large fonts&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Vision loss&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Not being able to see anything.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to help&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Screen readers can be made available in the app&lt;/strong&gt; &lt;br&gt;
TalkBAck(Android), and VoiceOver(iOS) are screen readers provided by Android and iOS mobile platforms.&lt;br&gt;
&lt;strong&gt;Screen Readers for other platforms.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Mobile Browsers:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;iOS - VoiceOver&lt;/li&gt;
&lt;li&gt;Android - TalkBack&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Desktop Browsers&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MacOS - VoiceOver&lt;/li&gt;
&lt;li&gt;Windows - JAWs &amp;amp; NVDA&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Flutter’s standard widgets generate an accessibility tree automatically. However, if your app needs something different, it can be customized using the &lt;a href="https://api.flutter.dev/flutter/widgets/Semantics-class.html"&gt;Semantics widget&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Hearing Disability&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Whether a user is deaf, has minor hearing impairment or has difficulties hearing sounds within a certain range.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to help&lt;/strong&gt;&lt;br&gt;
Videos and sound clips can be enhanced with &lt;strong&gt;optional transcriptions&lt;/strong&gt; or &lt;strong&gt;captions&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Mobility Disability&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;People that have physical motor limitations might encounter problems while navigating a mobile application. Tapping or other forms of gestures need to be configurable so that a user is not bound to a specific gesture.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to help&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tapping or other forms of gestures need to be configurable so that a user is not bound to a specific gesture.&lt;/li&gt;
&lt;li&gt;Also, a gesture should never be a mandatory event since physical motor limitations should not restrict the navigational behavior of an app.&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Both Android and iOS offer users the ability to configure shortcuts for frequently used phrases or words, as well as timing between presses on the screen. The size of buttons (or other touchable triggers in apps) are also configurable.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Literacy Disability&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;An often overlooked aspect of accessibility is accessibility for people with a learning disadvantage, like (functional) illiteracy, (functional) innumeracy, and digital illiteracy.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to help&lt;/strong&gt;&lt;br&gt;
Apps can better serve these users by using &lt;strong&gt;simple&lt;/strong&gt;, &lt;strong&gt;short sentences&lt;/strong&gt;, supported by &lt;strong&gt;clear&lt;/strong&gt;, &lt;strong&gt;culturally recognizable iconography&lt;/strong&gt;. &lt;strong&gt;Voice feedback&lt;/strong&gt; is also an option. &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Conclusion&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Reaching a larger audience with your apps is not just about targeting as many platforms as possible (mobile, web, desktop) but also about making them accessible for everyone, including those with temporary or permanent disabilities. Native platforms already provide accessibility mechanisms, and thankfully, &lt;strong&gt;Flutter does too!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Learn more about Accessibility&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://docs.flutter.dev/development/accessibility-and-localization/accessibility"&gt;flutter.dev&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://developer.android.com/courses/pathways/make-your-android-app-accessible?hl=en"&gt;Google Developers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://developer.apple.com/accessibility/ios/"&gt;Accessibility on iOS&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To learn more about flutter head to &lt;a href="https://docs.flutter.dev/"&gt;flutter.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Follow me:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://twitter.com/sal_sstein"&gt;Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/salstein"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>flutter</category>
      <category>dart</category>
      <category>a11y</category>
      <category>disability</category>
    </item>
  </channel>
</rss>
