Нет проблем
This commit is contained in:
parent
938db3342f
commit
b40906f86f
@ -87,7 +87,11 @@
|
||||
CornerRadius="15"
|
||||
HeightRequest="48"
|
||||
WidthRequest="335">
|
||||
<Entry TextColor="#6A6A6A" />
|
||||
<Entry
|
||||
HeightRequest="48"
|
||||
IsReadOnly="False"
|
||||
Text="xyz@gmail.com"
|
||||
TextColor="#6A6A6A" />
|
||||
</Frame>
|
||||
</HorizontalStackLayout>
|
||||
</StackLayout>
|
||||
@ -108,7 +112,25 @@
|
||||
CornerRadius="15"
|
||||
HeightRequest="48"
|
||||
WidthRequest="335">
|
||||
<Entry IsPassword="True" TextColor="#6A6A6A" />
|
||||
<Grid HeightRequest="40">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition Width="40" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<Entry
|
||||
HeightRequest="48"
|
||||
IsPassword="True"
|
||||
IsReadOnly="False"
|
||||
TextColor="#6A6A6A" />
|
||||
<Button
|
||||
Grid.Column="1"
|
||||
BackgroundColor="#f7f7f9"
|
||||
FontSize="16"
|
||||
HeightRequest="40"
|
||||
Text="◉"
|
||||
TextColor="Black"
|
||||
WidthRequest="48" />
|
||||
</Grid>
|
||||
</Frame>
|
||||
</HorizontalStackLayout>
|
||||
</StackLayout>
|
||||
@ -126,6 +148,7 @@
|
||||
<Button
|
||||
Margin="0,24,0,0"
|
||||
BackgroundColor="#48B2E7"
|
||||
Clicked="Button_Clicked"
|
||||
CornerRadius="14"
|
||||
Text="Войти"
|
||||
TextColor="#F7F7F9" />
|
||||
|
@ -9,6 +9,11 @@
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private async void Button_Clicked(object sender, EventArgs e)
|
||||
{
|
||||
await Navigation.PushAsync(new NewPage1());
|
||||
}
|
||||
|
||||
//private void OnCounterClicked(object sender, EventArgs e)
|
||||
//{
|
||||
// count++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user