For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.
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" |
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
| Flutter Resources | |
| Documentation: https://docs.flutter.io/ | |
| Github: https://github.com/flutter/flutter | |
| StackOverflow: https://stackoverflow.com/questions/tagged/flutter | |
| Gitter: https://gitter.im/flutter/flutter | |
| Effective Dart Guide: https://www.dartlang.org/guides/language/effective-dart | |
| Dart Tips: https://www.dartlang.org/resources/dart-tips | |
| Flutter FAQ: https://flutter.io/faq/ | |
| Flutter Rendering: https://www.youtube.com/watch?v=UUfXWzp0-DU | |
| Flutter Engine: https://github.com/flutter/engine/wiki |
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
| public class AgregarItemActivity extends AppCompatActivity { | |
| Usuario user; | |
| boolean listenerStatus; | |
| String sessionID; | |
| String eventoID; | |
| String agregarItemURL; | |
| String agregarImagenesURL; | |
| String item; |
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 com.google.firebase.iid.FirebaseInstanceId; | |
| import com.google.firebase.iid.FirebaseInstanceIdService; | |
| public class FirebaseInstanceToken extends FirebaseInstanceIdService { | |
| @Override | |
| public void onTokenRefresh() { | |
| String token = FirebaseInstanceId.getInstance().getToken(); | |
| TokenEvent tokenEvent = new TokenEvent(token); | |
| //TODO Consumir sua API para enviar o novo token do dispositivo... |
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 com.wordpress.pixellcode.controller; | |
| import java.net.URL; | |
| import java.util.ResourceBundle; | |
| import javafx.application.Platform; | |
| import javafx.beans.binding.BooleanBinding; | |
| import javafx.fxml.FXML; | |
| import javafx.fxml.Initializable; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.Hyperlink; |