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:genq/genq.dart'; | |
part 'genq_enum.genq.dart'; | |
abstract interface class Localizable { | |
String get l10n; | |
} | |
@GenqJsonEnum() | |
enum SimpleEnum { |
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:math'; | |
class Card {} | |
class King extends Card {} | |
class Queen extends Card {} | |
void main() { | |
final kings = [King(), King(), King(), King()]; |
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
void main() { | |
gogogo(1440000); | |
} | |
void gogogo(int income) { | |
var rest = income * 0.7; | |
var impuesto = 0.0; | |
var x = rest - 929520; | |
impuesto += x * 0.24; |
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:async'; | |
void main() async { | |
var x = 1; | |
print('main: x=$x'); | |
foo(x); | |
final y = x; | |
final timer = Timer.periodic(Duration(seconds: 4), (_){ | |
print('lambda x=$x, y=$y'); | |
}); |
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
.logo { | |
background-image: url(https://user-images.githubusercontent.com/25702530/169078272-541936ba-9ddd-45ea-aa68-24024619e6a0.png); | |
} | |
.progressBar { | |
background-color: rgb(255, 255, 255); | |
} | |
/* .splash { | |
background-image: url(https://user-images.githubusercontent.com/25702530/169078302-2fe2a3fd-3679-43a4-a459-d90b32ec2816.png); |
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
{ | |
"categories": [ | |
{ | |
"name": "Movies", | |
"hls":"https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/hls/", | |
"dash":"https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/dash/", | |
"mp4":"https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/mp4/", | |
"images":"https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/images/", | |
"tracks":"https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/tracks/", | |
"videos": [ |
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.evha.so_br_app00; | |
import android.content.BroadcastReceiver; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.util.Log; | |
import android.widget.Toast; | |
public class BReceiver extends BroadcastReceiver { |