- Dart: https://dart.dev/get-dart/archive
- Flutter: https://docs.flutter.dev/get-started/install/windows
- Android Studio: https://developer.android.com/studio
- Visual Studio Code: https://code.visualstudio.com/
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
| <script setup lang="ts"> | |
| import Button from '@/base-components/Button'; | |
| import { FormInput, FormLabel } from '@/base-components/Form'; | |
| import { reactive } from 'vue'; | |
| const form = reactive({ | |
| name: '', | |
| email: '', | |
| password: '', | |
| }); |
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
| # syntax=docker/dockerfile:1 | |
| FROM python:3.7-slim | |
| ENV PYTHONDONTWRITEBYTECODE=1 | |
| ENV PYTHONUNBUFFERED=1 | |
| WORKDIR /code | |
| RUN echo $TZ > /etc/timezone && \ | |
| apt-get install -y tzdata && \ | |
| rm /etc/localtime && \ |
OlderNewer