-
Download
archlinux-bootstrap-<version>-x86_64.tar.gz
from one of the mirrors. You should verify its signature. -
While it's possible to import a
.tar.gz
into WSL, Arch's bootstrap needs to be adjusted first. Open any Linux distro that can transfer files to/from Windows. (WSL counts.) -
In Linux:
# This needs to be done as root to avoid WSL permission issues. sudo -i # Extract it, cd into the folder, and compress it again.
This file contains 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
import 'package:flutter/material.dart'; | |
import 'package:get/get.dart'; | |
void main() { | |
runApp(GetMaterialApp( | |
initialRoute: '/login', | |
getPages: [ | |
GetPage( | |
name: '/login', | |
page: () => LoginPage(), |