Murali
✅ Vue js + .Net Web Api
Create another Vue JS application which Contains a Small Calling toolbar with buttons like “Receive Call”, “Dial Call”,”Mute/Unmute”,”Pause/Continue” and actually making a phone call to a phone number and receiving a phone call from any number using VOIP technology (voice over IP)
Once you are done with the solution you can host the application on some public url so that we can test it and also send the source code by uploading it to git or by sending a zip file of the code.
this my task how to creat it
51 replies
Delay While Page Loading
<Grid>
<!-- Define the layout for the vertical tab bar and the content area -->
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<!-- Vertical Tabs -->
<ColumnDefinition Width="" />
<!-- Dynamic Content Area -->
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<!-- Fixed Header -->
<RowDefinition Height=""/>
<!-- Remaining Content -->
</Grid.RowDefinitions>
<!-- Fixed Header -->
<HorizontalStackLayout Grid.Row="0" Grid.ColumnSpan="2" BackgroundColor="Gray" Padding="10">
<Button Text="Dashboard" Command="{Binding ChangeTabCommand}" CommandParameter="Dashboard" />
<Button Text="POS" Command="{Binding ChangeTabCommand}" CommandParameter="POS" />
<Button Text="Table" Command="{Binding ChangeTabCommand}" CommandParameter="Table" />
<Button Text="Settings" Command="{Binding ChangeTabCommand}" CommandParameter="Settings" />
<Button Text="Logout" Command="{Binding ChangeTabCommand}" CommandParameter="Logout" />
</HorizontalStackLayout>
<!-- Vertical Tab Bar -->
<!-- Dynamic Content Area -->
<ContentView Grid.Row="1" BackgroundColor="Red" Grid.Column="1" Content="{Binding CurrentPage}">
<!-- Content will be swapped here based on the selected tab -->
</ContentView>
</Grid>
88 replies