- TS application listening port: 7777
|-- dist
|-- src
|-- .dockerignore
|-- Dockerfile
| import 'dart:async'; | |
| import 'dart:math' as math; | |
| import 'package:flutter/gestures.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/services.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { |
| import 'package:flutter/material.dart'; | |
| class StepProgressBar extends StatelessWidget { | |
| final int currentStep; | |
| final int totalSteps; | |
| final double leftPadding; | |
| final double rightPadding; | |
| final Color selectedColor; | |
| final Color unselectedColor; |
| /// roipeker - 2020 | |
| /// Based on | |
| /// https://medium.com/coding-with-flutter/flutter-case-study-multiple-navigators-with-bottomnavigationbar-90eb6caa6dbf | |
| import 'package:flutter/material.dart'; | |
| import 'package:get/get.dart'; | |
| class SampleMultiNavColors extends StatelessWidget { | |
| @override |
| <h1 align="center"> | |
| <br> | |
| <img src="YOUR_LOGO_URL" alt="YOUR_PROJECT_NAME" width="120"> | |
| <br> | |
| <br> | |
| YOUR_PROJECT_NAME | |
| </h1> | |
| <p align="center">A little description about your project</p> |
| import 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:bloc/bloc.dart'; | |
| import 'package:flutter_bloc/flutter_bloc.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { |
| // This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. | |
| // To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/ | |
| // or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. | |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Net.Sockets; | |
| using System.Text; | |
| using System.Threading; | |
| using UnityEngine; |
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis