-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hide the Next button if it is disabled (#2407)
* add horizontalscrollview to bottom navigation * Revert horizontal scrollview. * Make Next button hidden if disabled. * spotless apply. * Add android tests. * Removed dead code. * Add missing file. --------- Co-authored-by: Santosh Pingle <[email protected]>
- Loading branch information
1 parent
30a07d7
commit 110d62e
Showing
4 changed files
with
90 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"resourceType": "Questionnaire", | ||
"item": [ | ||
{ | ||
"linkId": "1", | ||
"type": "group", | ||
"extension": [ | ||
{ | ||
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", | ||
"valueCodeableConcept": { | ||
"coding": [ | ||
{ | ||
"system": "http://hl7.org/fhir/questionnaire-item-control", | ||
"code": "page", | ||
"display": "Page" | ||
} | ||
], | ||
"text": "Page" | ||
} | ||
} | ||
], | ||
"item": [ | ||
{ | ||
"linkId": "1.1", | ||
"type": "display", | ||
"text": "Personal information", | ||
"prefix": "1." | ||
} | ||
] | ||
}, | ||
{ | ||
"linkId": "2", | ||
"type": "group", | ||
"extension": [ | ||
{ | ||
"url": "http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl", | ||
"valueCodeableConcept": { | ||
"coding": [ | ||
{ | ||
"system": "http://hl7.org/fhir/questionnaire-item-control", | ||
"code": "page", | ||
"display": "Page" | ||
} | ||
], | ||
"text": "Page" | ||
} | ||
} | ||
], | ||
"item": [ | ||
{ | ||
"linkId": "2.1", | ||
"type": "date", | ||
"text": "Date of birth", | ||
"prefix": "2.", | ||
"required": true | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters