An open API service indexing awesome lists of open source software.

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

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});
}
```