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
package secret | |
import android.content.Context; | |
import android.graphics.Bitmap; | |
import android.graphics.drawable.BitmapDrawable; | |
import android.os.Bundle; | |
import android.util.Log; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.webkit.WebView; |
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
default_platform :android | |
platform :android do | |
before_all do | |
ENV["SLACK_URL"] = "https://hooks.slack.com/services/ABC/123/XYZ" | |
end | |
######################### PUBLIC LANES ######################### | |
desc "Deploy a new Prod APK version to Play Store Alpha" |
- Neovim >= 0.5.0
- For regular Vim, you will likely need to use the vimspector plugin. This document does not support configuring vimspector.
- Neovim plugin https://github.com/mfussenegger/nvim-dap (tested at commit fafd7f9a)
- Installation instructions at the README.
- Dart SDK >= 2.15.0-121.0.dev (see commit)
- Flutter SDK with flutter/flutter#91802 (not yet merged)
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:ui'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_shaders/flutter_shaders.dart'; | |
void main() { | |
runApp(BlurGallery()); | |
} | |
class BlurGallery extends StatelessWidget { | |
@override |
OlderNewer