Appcenter: Element is visible by the UI but not by automation and an error "(center not on screen)" displays (iOS Only, Xamarin.UITest)

Created on 21 May 2021  路  5Comments  路  Source: microsoft/appcenter

I have an issue with the application that I am working on automation using Xamarin.UITest. The issue that I will run into sometimes is with an element being visible on the UI but not able to be interacted with via automation code. When I do an app.Repl(); for the element I get in parentheses "(center not on screen)" for the element. I have only experienced this issue with iOS I have never seen the issue on Android. The application I am automating is a Xamarin Forms application that uses XAML files.

if anyone can help me with this in 2 ways, is there anything I can do via automation code to still interact with the element despite it having this issue?
OR
is there something that I can tell the developers of this project to do in order to fix the UI so that the issue does not occur?
any insight as to why this happens and how to work with it is much appreciated.
Thank you,

Screen Shot 2021-05-21 at 11 59 26 AM

feature request support test

All 5 comments

Hello, @Moshex!

Please provide some additional info:
1) As I understood you can find the needed view, but can't interact with it. So, is there any error while you performing an action? For example, what will happen if you try to tap on this view?

2) Do you have any advice for us to reproduce this issue? Or maybe you have a project that you can share with us.

Best regards,
Konstantin B.

@konstantin-bobkov
Thank you for helping with this issue.

  1. The element for the end-user works as intended, when an end-user taps it works just like any other button or option. However with Xamarin.UITest automation tries to interact with the element it gives the generic error of "The element is not able to be found" like so.
    System.Exception : Error while performing ScrollDownTo(Marked("AddMedications"), null, Auto, 0.67, 500, False, null) ----> System.Exception : Timeout before element was found

This issue is just with automation and the end-user does not see it at all. The interesting workaround or observation that I have made is as follows. The issue is not consistent on all screen sizes, which means if it's not "automation visible" on a smaller iPhone it may be "automation visible" on a larger one and vice-versa. I also notice that this happens on views that can be scrollable. What this means using the example above, if you have a "Login" screen on an app, and the view naturally is not scrollable. When you tap the "User Name" entry and the qwerty keyboard displays the view is now scrollable with the keyboard present. Using this Logic the element becomes "automation visible" if I can scroll the view. however, not all views can be scrolled witch makes this issue a very difficult one to work with.

  1. I am not sure if the app that I am working on is unique or others have seen the issue. I have asked my lead DEV @TheWraithL98 to share application specifics that may pertain to this issue. The only thing that I can think of is it needs to be a screen that has the ability to scroll and auto-fits based on the screen size it's running on.

Here is an example of XAML code where this issue happens:
in this example, the option that has the issue is the "AddMedications" button:

````
Padding="0"
VerticalOptions="FillAndExpand">







HorizontalOptions="StartAndExpand"
VerticalOptions="StartAndExpand"
Spacing="0">
Spacing="5"
AutomationId="SelectedDateLayout">

                        <Label Text="Manage Your Medication" 
                               Font="24" FontAttributes="Bold"
                               VerticalOptions="Start" 
                               HorizontalOptions="CenterAndExpand"
                               Margin="10,25"
                               AutomationId="NoMedicationHeader"/>
                        <Label Text="View reminders and mark your medication when taken."
                               Font="16" 
                               HorizontalTextAlignment="Center"
                               VerticalOptions="Start"
                               HorizontalOptions="CenterAndExpand"
                               Margin="10,25" 
                               AutomationId="NoMedicationText"/>
                        <controls:WellRxButton x:Name="AddMedications" 
                                               Text="Add Notifications"
                                               Style="{StaticResource PageFloatingButton}"
                                               AutomationId="AddMedications" />
                    </StackLayout>
                </Grid>
            </ScrollView>
        </StackLayout>`

```

I can assume the next logical question here will be what does the WellRxButton control do?

it just extends standard X.F button with some custom coloring attributes, no functional event lifecycle changes at all. So this is functionally exactly the same as

Hello @Moshex TheWraithL98
Thanks for your detailed answers. Can I ask you, please, the following questions:
1) Which version of Xamarin.UITest and Xamarin.Forms do you use in your project?
2) Did you try other scrolling interaction methods like 'ScrollTo'?
3) Can automation reach any other elements which are hidden by default and only visible after scrolling?
4) Did you try to find it by any other property but 'AutometionId'?

Also, could you try to print app.Print.Tree() just before the app.ScrollDownTo(Marked("AddMedications"), null, Auto, 0.67, 500, False, null)invocation and share the output?

@marsinchevskaya and @TheWraithL98
Here is the answer to your questions in bold:

Which version of Xamarin.UITest and Xamarin.Forms do you use in your project?

versions of Xamarin.UITest = latest (3.0.19) and Xamarin.Forms = 4.6.0.1180

Did you try other scrolling interaction methods like 'ScrollTo'?

yes same issue. this applies to all interactions with that element including tapping or even querying it

Can automation reach any other elements which are hidden by default and only visible after scrolling?

yes with no issue

Did you try to find it by any other property but 'AutometionId'?

yes, and none of them work it's like I said the element just seems to be invisible to automation

Here is the print you requested:

````

app.Print.Tree()
[CalabashRootView > ... > UILayoutContainerView] [UITransitionView > ... > UILayoutContainerView] [UINavigationTransitionView > ... > UIView] [Xamarin_Forms_Platform_iOS_PageContainer] id: "HealthLogPage" [Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_BoxRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "weeklyMonthlyLogCalendar"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "CalendarMonthYearLabel_Container"
[UILabel] id: "CalendarMonthYearLabel", label: "June 2021", text: "June 2021"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "MonthViewButton_Container"
[UIImageView] id: "MonthViewButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarPrevButton_Container"
[UIImageView] id: "CalendarPrevButton"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarNextButton_Container"
[UIImageView] id: "CalendarNextButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "CalendarContent"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "M", text: "M"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "W", text: "W"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "F", text: "F"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_ScrollViewRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "SelectedDateLayout"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "June 2021", text: "June 2021"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationHeader_Container"
[UILabel] id: "NoMedicationHeader", label: "Manage Your Medication", text: "Manage Your Medication"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationText_Container"
[UILabel] id: "NoMedicationText", label: "View reminders and mark your medication when taken.", text: "View reminders and mark your medication when taken."
[WellRx_Common_iOS_Renderers_WellRxButtonRenderer] id: "AddMedications_Container"
[UIButton] id: "AddMedications", label: "Add Notifications" (center not on screen)
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[_UIScrollViewScrollIndicator > UIView] label: "Vertical scroll bar, 1 page", text: "0%" (center not on screen)
[Xamarin_Forms_Platform_iOS_ActivityIndicatorRenderer] id: "LoadingIndicator_Container"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_BoxRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "weeklyMonthlyLogCalendar"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "CalendarMonthYearLabel_Container"
[UILabel] id: "CalendarMonthYearLabel", label: "June 2021", text: "June 2021"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "MonthViewButton_Container"
[UIImageView] id: "MonthViewButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarPrevButton_Container"
[UIImageView] id: "CalendarPrevButton"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarNextButton_Container"
[UIImageView] id: "CalendarNextButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "CalendarContent"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "M", text: "M"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "W", text: "W"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "F", text: "F"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_ScrollViewRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "SelectedDateLayout"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "June 2021", text: "June 2021"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationHeader_Container"
[UILabel] id: "NoMedicationHeader", label: "Manage Your Medication", text: "Manage Your Medication"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationText_Container"
[UILabel] id: "NoMedicationText", label: "View reminders and mark your medication when taken.", text: "View reminders and mark your medication when taken."
[WellRx_Common_iOS_Renderers_WellRxButtonRenderer] id: "AddMedications_Container"
[UIButton] id: "AddMedications", label: "Add Notifications" (center not on screen)
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[_UIScrollViewScrollIndicator > UIView] label: "Vertical scroll bar, 1 page", text: "0%" (center not on screen)
[Xamarin_Forms_Platform_iOS_ActivityIndicatorRenderer] id: "LoadingIndicator_Container"
[Xamarin_Forms_Platform_iOS_BoxRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "weeklyMonthlyLogCalendar"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "CalendarMonthYearLabel_Container"
[UILabel] id: "CalendarMonthYearLabel", label: "June 2021", text: "June 2021"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "MonthViewButton_Container"
[UIImageView] id: "MonthViewButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarPrevButton_Container"
[UIImageView] id: "CalendarPrevButton"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarNextButton_Container"
[UIImageView] id: "CalendarNextButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "CalendarContent"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "M", text: "M"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "W", text: "W"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "F", text: "F"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_ScrollViewRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "SelectedDateLayout"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "June 2021", text: "June 2021"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationHeader_Container"
[UILabel] id: "NoMedicationHeader", label: "Manage Your Medication", text: "Manage Your Medication"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationText_Container"
[UILabel] id: "NoMedicationText", label: "View reminders and mark your medication when taken.", text: "View reminders and mark your medication when taken."
[WellRx_Common_iOS_Renderers_WellRxButtonRenderer] id: "AddMedications_Container"
[UIButton] id: "AddMedications", label: "Add Notifications" (center not on screen)
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[_UIScrollViewScrollIndicator > UIView] label: "Vertical scroll bar, 1 page", text: "0%" (center not on screen)
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "weeklyMonthlyLogCalendar"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "CalendarMonthYearLabel_Container"
[UILabel] id: "CalendarMonthYearLabel", label: "June 2021", text: "June 2021"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "MonthViewButton_Container"
[UIImageView] id: "MonthViewButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarPrevButton_Container"
[UIImageView] id: "CalendarPrevButton"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarNextButton_Container"
[UIImageView] id: "CalendarNextButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "CalendarContent"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "M", text: "M"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "W", text: "W"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "F", text: "F"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_ScrollViewRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "SelectedDateLayout"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "June 2021", text: "June 2021"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationHeader_Container"
[UILabel] id: "NoMedicationHeader", label: "Manage Your Medication", text: "Manage Your Medication"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationText_Container"
[UILabel] id: "NoMedicationText", label: "View reminders and mark your medication when taken.", text: "View reminders and mark your medication when taken."
[WellRx_Common_iOS_Renderers_WellRxButtonRenderer] id: "AddMedications_Container"
[UIButton] id: "AddMedications", label: "Add Notifications" (center not on screen)
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[_UIScrollViewScrollIndicator > UIView] label: "Vertical scroll bar, 1 page", text: "0%" (center not on screen)
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "weeklyMonthlyLogCalendar"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "CalendarMonthYearLabel_Container"
[UILabel] id: "CalendarMonthYearLabel", label: "June 2021", text: "June 2021"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "MonthViewButton_Container"
[UIImageView] id: "MonthViewButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarPrevButton_Container"
[UIImageView] id: "CalendarPrevButton"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarNextButton_Container"
[UIImageView] id: "CalendarNextButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "CalendarContent"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "M", text: "M"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "W", text: "W"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "F", text: "F"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "CalendarMonthYearLabel_Container"
[UILabel] id: "CalendarMonthYearLabel", label: "June 2021", text: "June 2021"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "MonthViewButton_Container"
[UIImageView] id: "MonthViewButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarPrevButton_Container"
[UIImageView] id: "CalendarPrevButton"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarNextButton_Container"
[UIImageView] id: "CalendarNextButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "CalendarContent"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "M", text: "M"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "W", text: "W"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "F", text: "F"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "CalendarMonthYearLabel_Container"
[UILabel] id: "CalendarMonthYearLabel", label: "June 2021", text: "June 2021"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "MonthViewButton_Container"
[UIImageView] id: "MonthViewButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarPrevButton_Container"
[UIImageView] id: "CalendarPrevButton"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarNextButton_Container"
[UIImageView] id: "CalendarNextButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "CalendarMonthYearLabel_Container"
[UILabel] id: "CalendarMonthYearLabel", label: "June 2021", text: "June 2021"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "MonthViewButton_Container"
[UIImageView] id: "MonthViewButton"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "CalendarMonthYearLabel_Container"
[UILabel] id: "CalendarMonthYearLabel", label: "June 2021", text: "June 2021"
[UILabel] id: "CalendarMonthYearLabel", label: "June 2021", text: "June 2021"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "MonthViewButton_Container"
[UIImageView] id: "MonthViewButton"
[UIImageView] id: "MonthViewButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarPrevButton_Container"
[UIImageView] id: "CalendarPrevButton"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarNextButton_Container"
[UIImageView] id: "CalendarNextButton"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarPrevButton_Container"
[UIImageView] id: "CalendarPrevButton"
[UIImageView] id: "CalendarPrevButton"
[FFImageLoading_Forms_Platform_CachedImageRenderer] id: "CalendarNextButton_Container"
[UIImageView] id: "CalendarNextButton"
[UIImageView] id: "CalendarNextButton"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "CalendarContent"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "M", text: "M"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "W", text: "W"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "F", text: "F"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "CalendarContent"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "M", text: "M"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "W", text: "W"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "F", text: "F"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "30", text: "30"
[UILabel] label: "30", text: "30"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "M", text: "M"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "M", text: "M"
[UILabel] label: "M", text: "M"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "31", text: "31"
[UILabel] label: "31", text: "31"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1", text: "1"
[UILabel] label: "1", text: "1"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "W", text: "W"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "W", text: "W"
[UILabel] label: "W", text: "W"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "2", text: "2"
[UILabel] label: "2", text: "2"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "T", text: "T"
[UILabel] label: "T", text: "T"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "3", text: "3"
[UILabel] label: "3", text: "3"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "F", text: "F"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "F", text: "F"
[UILabel] label: "F", text: "F"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "4", text: "4"
[UILabel] label: "4", text: "4"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "S", text: "S"
[UILabel] label: "S", text: "S"
[Xamarin_Forms_Platform_iOS_FrameRenderer > ... > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView > Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "5", text: "5"
[UILabel] label: "5", text: "5"
[Xamarin_Forms_Platform_iOS_FrameRenderer > Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_FrameRenderer_FrameView]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_ScrollViewRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "SelectedDateLayout"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "June 2021", text: "June 2021"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationHeader_Container"
[UILabel] id: "NoMedicationHeader", label: "Manage Your Medication", text: "Manage Your Medication"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationText_Container"
[UILabel] id: "NoMedicationText", label: "View reminders and mark your medication when taken.", text: "View reminders and mark your medication when taken."
[WellRx_Common_iOS_Renderers_WellRxButtonRenderer] id: "AddMedications_Container"
[UIButton] id: "AddMedications", label: "Add Notifications" (center not on screen)
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[_UIScrollViewScrollIndicator > UIView] label: "Vertical scroll bar, 1 page", text: "0%" (center not on screen)
[Xamarin_Forms_Platform_iOS_ScrollViewRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "SelectedDateLayout"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "June 2021", text: "June 2021"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationHeader_Container"
[UILabel] id: "NoMedicationHeader", label: "Manage Your Medication", text: "Manage Your Medication"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationText_Container"
[UILabel] id: "NoMedicationText", label: "View reminders and mark your medication when taken.", text: "View reminders and mark your medication when taken."
[WellRx_Common_iOS_Renderers_WellRxButtonRenderer] id: "AddMedications_Container"
[UIButton] id: "AddMedications", label: "Add Notifications" (center not on screen)
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[_UIScrollViewScrollIndicator > UIView] label: "Vertical scroll bar, 1 page", text: "0%" (center not on screen)
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer > Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "SelectedDateLayout"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "June 2021", text: "June 2021"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationHeader_Container"
[UILabel] id: "NoMedicationHeader", label: "Manage Your Medication", text: "Manage Your Medication"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationText_Container"
[UILabel] id: "NoMedicationText", label: "View reminders and mark your medication when taken.", text: "View reminders and mark your medication when taken."
[WellRx_Common_iOS_Renderers_WellRxButtonRenderer] id: "AddMedications_Container"
[UIButton] id: "AddMedications", label: "Add Notifications" (center not on screen)
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer]
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "SelectedDateLayout"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "June 2021", text: "June 2021"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationHeader_Container"
[UILabel] id: "NoMedicationHeader", label: "Manage Your Medication", text: "Manage Your Medication"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationText_Container"
[UILabel] id: "NoMedicationText", label: "View reminders and mark your medication when taken.", text: "View reminders and mark your medication when taken."
[WellRx_Common_iOS_Renderers_WellRxButtonRenderer] id: "AddMedications_Container"
[UIButton] id: "AddMedications", label: "Add Notifications" (center not on screen)
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[Xamarin_Forms_Platform_iOS_Platform_DefaultRenderer] id: "SelectedDateLayout"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "June 2021", text: "June 2021"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "June 2021", text: "June 2021"
[UILabel] label: "June 2021", text: "June 2021"
[Xamarin_Forms_Platform_iOS_LabelRenderer]
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[UILabel] label: "1 Tuesday", text: "1 Tuesday"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationHeader_Container"
[UILabel] id: "NoMedicationHeader", label: "Manage Your Medication", text: "Manage Your Medication"
[UILabel] id: "NoMedicationHeader", label: "Manage Your Medication", text: "Manage Your Medication"
[Xamarin_Forms_Platform_iOS_LabelRenderer] id: "NoMedicationText_Container"
[UILabel] id: "NoMedicationText", label: "View reminders and mark your medication when taken.", text: "View reminders and mark your medication when taken."
[UILabel] id: "NoMedicationText", label: "View reminders and mark your medication when taken.", text: "View reminders and mark your medication when taken."
[WellRx_Common_iOS_Renderers_WellRxButtonRenderer] id: "AddMedications_Container"
[UIButton] id: "AddMedications", label: "Add Notifications" (center not on screen)
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[UIButton] id: "AddMedications", label: "Add Notifications" (center not on screen)
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[UIButtonLabel] label: "Add Notifications", text: "Add Notifications"
[_UIScrollViewScrollIndicator > UIView] label: "Vertical scroll bar, 1 page", text: "0%" (center not on screen)
[UIView]
[Xamarin_Forms_Platform_iOS_ActivityIndicatorRenderer] id: "LoadingIndicator_Container"
[Xamarin_Forms_Platform_iOS_NavigationRenderer_FormsNavigationBar] id: "Xamarin_Forms_Platform_iOS_NavigationRenderer_ParentingView"
[_UIBarBackground]
[UIVisualEffectView > _UIVisualEffectBackdropView]
[_UIBarBackgroundShadowView > _UIBarBackgroundShadowContentImageView]
[_UINavigationBarContentView]
[_UIButtonBarButton] id: "BackButton"
[_UIModernBarButton]
[_UIModernBarButton] label: "Back"
[UIImageView] label: "Back"
[Xamarin_Forms_Platform_iOS_NavigationRenderer_Container]
[UIImageView] id: "toolbar_icon.png"
[UIView]
[UIAccessibilityBackButtonElement] label: "Back"
[Xamarin_Forms_Platform_iOS_NavigationRenderer_Container]
[UIImageView] id: "toolbar_icon.png"
[UITabBar] label: "Tab Bar"
[_UIBarBackground]
[UIVisualEffectView]
[_UIVisualEffectBackdropView]
[_UIVisualEffectSubview]
[_UIVisualEffectSubview]
[_UIBarBackgroundShadowView > _UIBarBackgroundShadowContentImageView]
[UITabBarButton] id: "HomeTab", label: "Dashboard"
[UITabBarSwappableImageView]
[UITabBarButtonLabel] label: "Dashboard", text: "Dashboard"
[UITabBarButton] id: "MedChestTab", label: "Med Chest"
[UITabBarSwappableImageView]
[UITabBarButtonLabel] label: "Med Chest", text: "Med Chest"
[UITabBarButton] id: "PriceMedsTab", label: "Price Meds"
[UITabBarSwappableImageView]
[UITabBarButtonLabel] label: "Price Meds", text: "Price Meds"
[UITabBarButton] id: "ScoreTab", label: "Nutrition"
[UITabBarSwappableImageView]
[UITabBarButtonLabel] label: "Nutrition", text: "Nutrition"
[UITabBarButton] id: "MoreMenuItemTab", label: "More"
[UITabBarSwappableImageView]
[UITabBarButtonLabel] label: "More", text: "More"
````

Was this page helpful?
0 / 5 - 0 ratings