This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # AITicket — Webapp Specification | |
| > **Single source of truth.** All architectural and product decisions live here. If something is built or planned that contradicts this document, either the doc gets updated first or the work is wrong. Out-of-date sections must be corrected, not left to rot. | |
| --- | |
| ## 1. Tech Stack | |
| ### 1.1 Decision Summary |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ion-app> | |
| <ion-split-pane> | |
| <ion-menu when='md'> | |
| <ion-header> | |
| <ion-toolbar> | |
| <ion-title>Menu</ion-title> | |
| </ion-toolbar> | |
| </ion-header> | |
| <ion-content> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace ConsoleApplication | |
| { | |
| public class Program | |
| { | |
| public static void Main(string[] args) | |
| { | |
| Console.WriteLine("Hello World!"); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "locked": false, | |
| "version": 2, | |
| "targets": { | |
| ".NETCoreApp,Version=v1.0": { | |
| "Libuv/1.9.0": { | |
| "type": "package", | |
| "dependencies": { | |
| "Microsoft.NETCore.Platforms": "1.0.1" | |
| }, |