Skip to content

Instantly share code, notes, and snippets.

View MuhAssar's full-sized avatar
🌙
Doing the required!

Muhamad Assar MuhAssar

🌙
Doing the required!
  • Wursha Apps
  • Egypt
View GitHub Profile
@MuhAssar
MuhAssar / home.page.html
Created January 18, 2019 00:31
demonstrate RTL bug in ionic 4 CSS utility float-end and float-start
<ion-content>
<ion-grid>
<ion-row>
<ion-col>
<div float-end style='width:50%'>
<h3>float-end</h3>
this should be on the left in RTL
</div>
<div float-start style='width:50%'>
<h3>float-start</h3>
@MuhAssar
MuhAssar / app.component.html
Created January 17, 2019 06:27
demonstrate ionic 4 component ion-segment bug in RTL and iOS mode
<ion-app>
<ion-split-pane>
<ion-menu>
<ion-content>
<ion-list>
<ion-item>
<ion-segment>
<ion-segment-button> 1 </ion-segment-button>
<ion-segment-button> 2 </ion-segment-button>
<ion-segment-button> 3 </ion-segment-button>
@MuhAssar
MuhAssar / app.component.html
Created January 17, 2019 06:08
demonstrate ion-toggle bug in ionic 4 while in RTL
<ion-app>
<ion-split-pane>
<ion-menu>
<ion-content>
<ion-list>
<ion-item>
<ion-icon slot="start" name="moon"></ion-icon>
<ion-label>وضع ليلي</ion-label>
<ion-toggle slot="end"></ion-toggle>
</ion-item>
@MuhAssar
MuhAssar / app.component.html
Created January 16, 2019 22:57
demonstrate weird scrollbar in ionic 4 menu component while in RTL , using @ionic/angular: 4.0.0-dev.201901162054.ceae5d2
<ion-app>
<ion-split-pane>
<ion-menu>
<ion-content>
<ion-list *ngFor="let i of [0,1,2,3,4]">
<ion-menu-toggle *ngFor="let i of [0,1,2,3,4]">
<ion-item>
<ion-label>
Page #{{i}}
</ion-label>
@MuhAssar
MuhAssar / app.component.html
Last active January 14, 2019 01:27
demonstrate RTL issues with ionic 4 component ion-item
<ion-app>
<ion-split-pane>
<ion-menu when='md'>
<ion-header>
<ion-toolbar>
<ion-title>Menu</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
@MuhAssar
MuhAssar / app.component.html
Last active January 14, 2019 00:48
demonstrate RTL issue with ionic 4 component item-divider
<ion-app>
<ion-split-pane>
<ion-menu when='md'>
<ion-header>
<ion-toolbar>
<ion-title>Menu</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<ion-list>
using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
@MuhAssar
MuhAssar / project.lock.json
Last active June 29, 2016 11:08
This unbelievably-long file is generated for a simple "hello world" program using .NetCore 1.0.0, I just did "dotnet new" followed by "dotnet restore", then BOOM! this behemoth file is generated
{
"locked": false,
"version": 2,
"targets": {
".NETCoreApp,Version=v1.0": {
"Libuv/1.9.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},