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
| import 'package:flutter/material.dart'; | |
| import 'dart:ui' as ui; | |
| import 'package:flutter/services.dart' show rootBundle; | |
| import 'dart:async'; | |
| import 'dart:typed_data'; | |
| void main() => runApp(new MyApp()); | |
| class MyApp extends StatelessWidget { | |
| // This widget is the root of your application. |
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
| import 'dart:io'; | |
| import 'dart:ui' as ui; | |
| import 'package:flutter/material.dart'; | |
| import 'package:path_provider/path_provider.dart'; | |
| void main() => runApp(MyApp()); | |
| String FILENAME = 'timg.jpeg'; |
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
| sudo rm -rfv /Library/Caches/com.apple.iconservices.store; sudo find /private/var/folders/ \( -name com.apple.dock.iconcache -or -name com.apple.iconservices \) -exec rm -rfv {} \; ; sleep 3;sudo touch /Applications/* ; killall Dock; killall Finder |
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
| image: ubuntu2004 | |
| install: | |
| - nvm use 16 | |
| - node --version | |
| build: off | |
| test: off |
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
| environment: | |
| matrix: | |
| - job_name: Windows | |
| QTDIR: C:\Qt\5.10.1\msvc2017_64 | |
| APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 | |
| - job_name: Linux | |
| APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu | |
| - job_name: macOS |
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
| if (-not (test-path "$env:ProgramFiles\AppVeyor\BuildAgent")) { | |
| $build_agent_mode = 'AmazonEC2' | |
| $appveyor_user = 'appveyor' | |
| $appveyor_password = '<your-desired-password>' | |
| iex ((new-object net.webclient).DownloadString('https://gist.github.com/FeodorFitsner/da03aa9de9fb95a9ec0a5a86821f98c6/raw/4deba4921235054b80a862d700f92c7543006d96/bootstrap-windows.ps1')) | |
| } |
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
| install: | |
| - sh: curl -LOb "oraclelicense=a" https://download.oracle.com/otn-pub/java/jdk/15.0.2+7/0d1cfde4252546c6931946de8db48ee2/jdk-15.0.2_osx-x64_bin.tar.gz -o jdk-15.0.2_osx-x64_bin.tar.gz | |
| - sh: tar zxf jdk-15.0.2_osx-x64_bin.tar.gz | |
| - sh: ./jdk-15.0.2.jdk/Contents/Home/bin/java --version |
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
| # original discussion: https://github.com/appveyor/ci/issues/3184#issuecomment-552023103 | |
| server { | |
| listen 443 ssl http2; | |
| listen [::]:443 ssl http2; | |
| server_name example.com; | |
| ssl_certificate /root/.acme.sh/example.com/fullchain.cer; | |
| ssl_certificate_key /root/.acme.sh/example.com/example.com.key; |
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
| environment: | |
| matrix: | |
| # Linux job | |
| - job_name: Linux build | |
| appveyor_build_worker_image: ubuntu | |
| # Windows job | |
| - job_name: Windows build | |
| job_depends_on: Linux build |
NewerOlder