File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515- [ Library] Integration of System library v2.3.0, component changelog v1.11 ([ #513 ] ( https://github.com/Orange-OpenSource/ouds-flutter/issues/#513 ) )
1616
1717### Fixed
18+ - [ Library] Input text helper link ([ #334 ] ( https://github.com/Orange-OpenSource/ouds-flutter/issues/#334 ) )
1819- [ DemoApp] [ Library ] Update keys, english label and Arabic translations ([ #518 ] ( https://github.com/Orange-OpenSource/ouds-flutter/issues/#518 ) )
1920
2021## [ 0.7.0] ( https://github.com/Orange-OpenSource/ouds-flutter/compare/0.5.0...0.7.0 ) - 2025-12-01
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212- [ Library] Update homepage documentation ([ #135 ] ( https://github.com/Orange-OpenSource/ouds-flutter/issues/#135 ) )
1313
1414### Fixed
15+ - [ Library] Input text helper link ([ #334 ] ( https://github.com/Orange-OpenSource/ouds-flutter/issues/#334 ) )
1516- [ Library] Update keys, english label and Arabic translations ([ #518 ] ( https://github.com/Orange-OpenSource/ouds-flutter/issues/#518 ) )
1617
1718## [ 0.7.0] ( https://github.com/Orange-OpenSource/ouds-flutter/compare/0.5.0...0.7.0 ) - 2025-12-01
Original file line number Diff line number Diff line change 1414/// {@category Link}
1515library ;
1616
17+ import 'dart:io' ;
1718import 'package:flutter/material.dart' ;
1819import 'package:flutter_svg/svg.dart' ;
1920import 'package:ouds_core/components/common/OudsBorder.dart' ;
@@ -248,7 +249,9 @@ class _OudsLinkState extends State<OudsLink> {
248249 /// Builds the main link container with proper constraints
249250 return Semantics (
250251 enabled: ! isDisabled,
251- hint: OudsLocalizations .of (context)? .core_link_trait_a11y,
252+ link: true ,
253+ // the link role is not read by talkback so we define it in value
254+ value: Platform .isAndroid ? OudsLocalizations .of (context)? .core_link_trait_a11y : null ,
252255 child: _buildLinkContainer (
253256 context,
254257 child: content,
You can’t perform that action at this time.
0 commit comments