- Created CMakeLists.txt for Flutter and runner components. - Implemented resource script (Runner.rc) for application metadata. - Developed main entry point (main.cpp) for the Windows application. - Added FlutterWindow class to manage the Flutter view within a Win32 window. - Implemented utility functions for console management and command line argument parsing. - Established Win32Window class for high DPI-aware window handling. - Included application icon and manifest for proper Windows integration. - Set up build configurations and dependencies for the Flutter application on Windows.
35 lines
671 B
Dart
35 lines
671 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ChartSampleData {
|
|
ChartSampleData(
|
|
{this.x,
|
|
this.y,
|
|
this.xValue,
|
|
this.yValue,
|
|
this.secondSeriesYValue,
|
|
this.thirdSeriesYValue,
|
|
this.pointColor,
|
|
this.size,
|
|
this.text,
|
|
this.open,
|
|
this.close,
|
|
this.low,
|
|
this.high,
|
|
this.volume});
|
|
|
|
final dynamic x;
|
|
final num? y;
|
|
final dynamic xValue;
|
|
final num? yValue;
|
|
final num? secondSeriesYValue;
|
|
final num? thirdSeriesYValue;
|
|
final Color? pointColor;
|
|
final num? size;
|
|
final String? text;
|
|
final num? open;
|
|
final num? close;
|
|
final num? low;
|
|
final num? high;
|
|
final num? volume;
|
|
}
|