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
| # Política de Privacidade | |
| ## Definições iniciais | |
| Olá! Este documento atende às exigências da Lei nº 13.709 – Lei Geral de Proteção de Dados Pessoais (LGPD) e tem o objetivo de informar como protegemos os seus dados. Nós respeitamos a sua privacidade e por isso, queremos esclarecer alguns pontos importantes. | |
| Seus dados serão tratados e armazenados nos servidores em nuvem contratados pela **Justo Tecnologia e Inovação Social Ltda.**, que tem sede em São Paulo/SP, CNPJ/MF nº 38.447.139/0001-50, considerada aqui a “controladora” e chamada de **CoffsyMovieApp**. | |
| Você é o “Titular” dos seus dados de acordo com a Lei 13.709 e é tratado aqui como o “titular” ou “você”. | |
| Ao se cadastrar na plataforma CoffsyMovieApp você aceita expressamente essa Política. |
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
| /// This interceptor is simplified because is doesn't contemplate | |
| /// a refresh token, which you should take care of. | |
| /// I haven't tested this code, but I believe it should work. | |
| /// If you have some feedback, please leave a comment and I'll review it :) Thanks. | |
| class AuthInterceptor extends InterceptorsWrapper { | |
| final Dio loggedDio; | |
| final Dio tokenDio; |
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
| /9j/4QI7RXhpZgAATU0AKgAAAAgACAEAAAQAAAABAAACWAEQAAIAAAANAAAAbgEBAAQAAAABAAABUgEPAAIAAAAHAAAAe4dpAAQAAAABAAAAlgESAAMAAAABAAYAAAEyAAIAAAAUAAAAgoglAAQAAAABAAABCAAAAABSZWRtaSBOb3RlIDcAWGlhb21pADIwMjA6MDk6MTggMjA6MTE6NTMAAAekAwADAAAAAQAAAACIJwADAAAAAQGQAACSCgAFAAAAAQAAAPCCmgAFAAAAAQAAAPiSCQADAAAAAQAQAACSCAAEAAAAAQAAAACCnQAFAAAAAQAAAQAAAAAAAAAShAAAA+gAAAFNAAAnEAAARlAAACcQAAkAAgAFAAAAAwAAAXoABgAFAAAAAQAAAZIAAQACAAAAAlMAAAAABQABAAAAAQAAAAAAGwACAAAABEdQUwAAAwACAAAAAlcAAAAABwAFAAAAAwAAAZoAHQACAAAACwAAAbIABAAFAAAAAwAAAb0AAAAAAAAAHQAAAAEAAAALAAAAAQACYSMAACcQAAtQ8gAAA+gAAAAXAAAAAQAAAAsAAAABAAAAMwAAAAEyMDIwOjA5OjE4AAAAADMAAAABAAAADQAAAAEABYTDAAAnEAAEARAAAgAAAA0AAAILAQ8AAgAAAAcAAAIYARIAAwAAAAEABgAAATIAAgAAABQAAAIfAAAAAFJlZG1pIE5vdGUgNwBYaWFvbWkAMjAyMDowOToxOCAyMDoxMTo1MwD/4AAQSkZJRgABAQAAAQABAAD/4gIoSUNDX1BST0ZJTEUAAQEAAAIYAAAAAAIQAABtbnRyUkdCIFhZWiAAAAAAAAAAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAAHRyWFlaAAABZAAAABRn |
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
| dsadsadsa |
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
| Política Privacidade A sua privacidade é importante para nós. É política do Journi.com.br respeitar a sua privacidade em relação a qualquer informação sua que possamos coletar no site Journi.com.br, e outros sites que possuímos e operamos. Solicitamos informações pessoais apenas quando realmente precisamos delas para lhe fornecer um serviço. Fazemo-lo por meios justos e legais, com o seu conhecimento e consentimento. Também informamos por que estamos coletando e como será usado. Apenas retemos as informações coletadas pelo tempo necessário para fornecer o serviço solicitado. Quando armazenamos dados, protegemos dentro de meios comercialmente aceitáveis para evitar perdas e roubos, bem como acesso, divulgação, cópia, uso ou modificação não autorizados. Não compartilhamos informações de identificação pessoal publicamente ou com terceiros, exceto quando exigido por lei. O no |
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'; | |
| class HeaderWidget extends StatefulWidget { | |
| @override | |
| _HeaderWidgetState createState() => _HeaderWidgetState(); | |
| } | |
| class _HeaderWidgetState extends State<HeaderWidget> { | |
| var _controller = ScrollController(); |
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
| def localProperties = new Properties() | |
| def localPropertiesFile = rootProject.file('local.properties') | |
| if (localPropertiesFile.exists()) { | |
| localPropertiesFile.withReader('UTF-8') { reader -> | |
| localProperties.load(reader) | |
| } | |
| } | |
| def flutterRoot = localProperties.getProperty('flutter.sdk') | |
| if (flutterRoot == null) { |
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
| /// blocks rotation; sets orientation to: portrait | |
| void _portraitModeOnly() { | |
| SystemChrome.setPreferredOrientations([ | |
| DeviceOrientation.portraitUp, | |
| DeviceOrientation.portraitDown, | |
| ]); | |
| } | |
| void _enableRotation() { | |
| SystemChrome.setPreferredOrientations([ |
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
| SystemChrome.setPreferredOrientations([ | |
| DeviceOrientation.portraitUp, | |
| DeviceOrientation.portraitDown, | |
| ]); |
NewerOlder