Creating and implementing the user interface for the TwitterSignInPage
In this section, we will update the underlying C# code within our TwitterSignInPage
code-behind file so that it can communicate with our TwitterSignInPageViewModel
. This will be used as a container to display our Twitter sign in dialog that will use our TwitterSignInPageRenderer
PageRenderer
, which we will create as we progress throughout this chapter.
Let's start by creating the TwitterSignInPage
interface for our TrackMyWalks
app by performing the following steps:
- Right-click on the
Services
folder and chooseAdd | New File...
from the pop-up menu. - Next, create a new
Forms ContentPage XAML
class calledTwitterSignIn
within theViews
folder, as you did in the section entitled Creating the WalksMainPage interface using XAML, located within Chapter 4, Creating the TrackMyWalks Native App.
- Then, ensure that the
TwitterSignInPage.xaml.cs
file, which is located within theViews
folder, is displayed within the code editor, and...