無障礙設計就是讓應用程式或網站能夠讓所有人,包括有視力、聽力、動作或認知障礙的人,都能夠輕鬆使用。
Semantics(
label: '播放按鈕',
child: IconButton(
icon: Icon(Icons.play_arrow),
onPressed: () {
// 執行播放操作
},
),
)
GestureDetector(
onTap: () {
// 處理點擊
},
child: Container(
width: 48.0,
height: 48.0,
child: Icon(Icons.add),
),
)
Text(
'重要提示',
style: TextStyle(
color: Colors.white,
backgroundColor: Colors.black, // 高對比度的文字顏色
),
)
Text(
'調整字體大小',
style: TextStyle(fontSize: 16.0),
textScaleFactor: MediaQuery.of(context).textScaleFactor,
)
我們明天見~