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