- Go to: 'System Preferences' >> 'MySQL' and stop MySQL
OR,
- sudo /usr/local/mysql/support-files/mysql.server start
- sudo /usr/local/mysql/support-files/mysql.server stop
using Xamarin.Forms; | |
namespace YourProject.Core.Effects | |
{ | |
public class FrameCornerRadius : RoutingEffect | |
{ | |
public FrameCornerRadius() | |
: base("YourProject.FrameCornerRadiusEffect") | |
{ | |
} |
using System; | |
using Android.Support.Design.Internal; | |
using Android.Support.Design.Widget; | |
namespace MyProject.App.Droid.Helpers | |
{ | |
public static class AndroidHelpers | |
{ | |
public static void SetShiftMode(this BottomNavigationView bottomNavigationView, bool enableShiftMode, bool enableItemShiftMode) | |
{ |
<?xml version="1.0" encoding="UTF-8"?> | |
<ContentView xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
x:Class="App.Core.Controls.ExtSearchBar" | |
x:Name="Root"> | |
<Grid> | |
<Grid.RowDefinitions> | |
<RowDefinition Height="50" /> | |
</Grid.RowDefinitions> |
using System.Collections; | |
using System.Diagnostics; | |
using A11YGuide.Controls; | |
using A11YGuide.Droid.Helpers; | |
using A11YGuide.ViewModels.Search; | |
using Android.Support.V7.Widget; | |
using Android.Views; | |
using Android.Widget; | |
using fivenine.Core.Extensions; | |
using Xamarin.Forms; |
using System.Threading.Tasks; | |
using Newtonsoft.Json; | |
using Refit; | |
using System.Net.Http; | |
using System; | |
namespace wms_xamarin | |
{ | |
public class LoginApi | |
{ |
using System; | |
using System.Collections.Generic; | |
using System.Collections.Specialized; | |
using MvvmCross.Binding.Attributes; | |
using MvvmCross.Core.ViewModels; | |
using MvvmCross.Platform.WeakSubscription; | |
using UIKit; | |
namespace MvvmCross.StackView | |
{ |
using System; | |
using Xamarin.Forms; | |
using Xamarin.Forms.Platform.iOS; | |
[assembly: ExportRenderer (typeof(ViewCell), typeof(MyAPP.iOS.CustomAllViewCellRendereriOS))] | |
namespace MyAPP.iOS | |
{ | |
public class CustomAllViewCellRendereriOS : ViewCellRenderer | |
{ | |
public override UIKit.UITableViewCell GetCell (Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv) |