Run :
adb shell getevent -pl
Search for : "ABS_MT_TRACKING_ID" - example :
| import 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_riverpod/flutter_riverpod.dart'; | |
| import 'package:riverpod_annotation/riverpod_annotation.dart'; | |
| part 'generated.g.dart'; | |
| @riverpod | |
| class GeneratedWidget extends _$GeneratedWidget { |
| class Logger { | |
| final String name; | |
| bool mute = false; | |
| // _cache is library-private, thanks to | |
| // the _ in front of its name. | |
| static final Map<String, Logger> _cache = <String, Logger>{}; | |
| factory Logger(String name) { | |
| return _cache.putIfAbsent(name, () => Logger._internal(name)); |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/services.dart'; | |
| void main() { | |
| runApp(const MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| const MyApp({Key? key}) : super(key: key); |
| import 'universal_platform_web.dart' | |
| if (dart.library.io) 'universal_platform_vm.dart'; | |
| /// A universal platform checker. | |
| /// | |
| /// Can be used to check active physical Flutter platform on all platforms. | |
| /// | |
| /// To check what host platform the app is running on use: | |
| /// | |
| /// * PlatformIs.android |
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',| import 'package:flutter/material.dart'; | |
| @immutable | |
| class ClipShadowPath extends StatelessWidget { | |
| final Shadow shadow; | |
| final CustomClipper<Path> clipper; | |
| final Widget child; | |
| ClipShadowPath({ | |
| @required this.shadow, |
| import 'dart:math'; | |
| import 'dart:ui'; | |
| import 'package:flutter/material.dart'; | |
| void main() async { | |
| runApp(MyApp()); | |
| } | |
| /// Represents some additional [Color]s to be used | |
| /// across the application |
| import 'dart:io'; | |
| import 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| class HomePage extends StatefulWidget { | |
| @override | |
| _HomePageState createState() => _HomePageState(); | |
| } | |
| class _HomePageState extends State<HomePage> { |
| $tipo = $args[0] | |
| Write-Output $path; | |
| Write-Output (Get-Item .).BaseName | |
| Write-Output $PSScriptRoot | |
| $local = Get-Location | |
| # Get-History | Export-Csv $local\history.csv -IncludeTypeInformation |