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:fl_chart_app/presentation/resources/app_resources.dart'; | |
import 'package:fl_chart/fl_chart.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_svg/flutter_svg.dart'; | |
class PieChartSample3 extends StatefulWidget { | |
const PieChartSample3({super.key}); | |
@override | |
State<StatefulWidget> createState() => PieChartSample3State(); |
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:convert'; | |
import 'package:fl_chart/fl_chart.dart'; | |
import 'package:fl_chart_app/chart_range_selector.dart'; | |
import 'package:fl_chart_app/presentation/presentation_utils.dart'; | |
import 'package:fl_chart_app/presentation/resources/app_colors.dart'; | |
import 'package:fl_chart_app/util/extensions/color_extensions.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; |
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:fl_chart/fl_chart.dart'; | |
import 'package:fl_chart_app/presentation/resources/app_resources.dart'; | |
import 'package:fl_chart_app/util/app_utils.dart'; | |
import 'package:flutter/material.dart'; | |
class BarChartSample5 extends StatefulWidget { | |
const BarChartSample5({super.key}); | |
@override | |
State<StatefulWidget> createState() => BarChartSample5State(); |
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:equatable/equatable.dart'; | |
import 'package:fl_chart/fl_chart.dart'; | |
import 'package:fl_chart_app/presentation/resources/app_colors.dart'; | |
import 'package:fl_chart_app/util/csv_parser.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
class CandlestickChartSample1 extends StatefulWidget { | |
const CandlestickChartSample1({super.key}); |
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
~/IdeaProjects/test_app (test-branch) » patrol develop -t integration_test/example_test.dart -d F60F1029-2613-4C93-921B-163CBCC7F140 --verbose | |
Verbose mode enabled. More logs will be printed. | |
Received test target: /Users/neo/IdeaProjects/test_app/integration_test/example_test.dart | |
Generated entrypoint /Users/neo/IdeaProjects/test_app/integration_test/test_bundle.dart for development | |
Received Android flavor: testapp | |
Received iOS flavor: testapp | |
$ flutter --no-version-check --suppress-analytics devices --machine | |
$ flutter --suppress-analytics --no-version-check pub deps --style=list | |
Received device: iPhone 14 Pro Max | |
$ xcrun simctl listapps F60F1029-2613-4C93-921B-163CBCC7F140 |
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:fl_chart/fl_chart.dart'; | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
const MyApp({super.key}); |
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'; | |
import 'package:fl_chart/fl_chart.dart'; | |
import 'package:fl_chart_app/cubits/app/app_cubit.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_bloc/flutter_bloc.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} |
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:fl_chart/fl_chart.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:google_fonts/google_fonts.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
const MyApp({super.key}); |
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'; | |
import 'package:fl_chart/fl_chart.dart'; | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} | |
class MyApp extends StatelessWidget { |
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:fl_chart/fl_chart.dart'; | |
import 'package:fl_chart_app/cubits/app/app_cubit.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_bloc/flutter_bloc.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} | |
class MyApp extends StatelessWidget { |
NewerOlder