https://github.com/akr-2803/flutterpractice
Test Repo. for Flutter commits
https://github.com/akr-2803/flutterpractice
Last synced: 2 months ago
JSON representation
Test Repo. for Flutter commits
- Host: GitHub
- URL: https://github.com/akr-2803/flutterpractice
- Owner: AKR-2803
- Created: 2023-01-18T11:07:20.000Z (over 2 years ago)
- Default Branch: day1
- Last Pushed: 2023-04-17T04:05:04.000Z (about 2 years ago)
- Last Synced: 2025-02-09T21:14:55.162Z (4 months ago)
- Language: Dart
- Size: 18 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
VSCode useful shortcuts :
- ## [CTRL + .] : wrap any widget
- ## [Shift + Alt + + drag mouse across the lines] : Select a column or box of code by dragging the mouse
- ## [CTRL + B] : opening/closin sidebar
- ## [CTRL + .] : wrap any widget
- ## [Shift + Alt + F] : Code formatting
- ## [Ctrl + D] : Copy Line Down(c/you can change it in keyboard shortcuts)
- ## [Ctrl + J Ctrl + L] : Join line(s) of code (select the text) : (change it in keyboard shortcuts : editor.action.joinLines)
- ## [Ctrl + P] : Open File quickly
- ## [Ctrl + L] : Select current Line
- ## ** [Ctrl + Space] : View possible paramters
- ## [git add "file path"] : to add file path with directory names containing spaces___
## GitHub Readme markdown tips :- ### Image : Drag and drop image in readme, copy the URL, paste here :
#### ``````
#### `````` is used for image border.
- ### Separator Lines : use 3 underscores : ```___```
- ### HyperLink : ```[text-here](link-here)```
- ### Colourful Code \```mention language name here ......\```
Example :
```
class A{
String name;
A({required this.name});
}
```
```dart
class A{
String name;
A({required this.name});
}
```