chore: version bump - #36
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the package version to 1.0.25, adds Tizen support to the documentation, and adjusts dependency versions and the Dart SDK constraint in the example project. It also cleans up unused imports across several files. However, a critical issue was identified in lib/models/spoiler_drawing_strategy.dart where the removal of the dart:typed_data import will cause compilation errors because types like Float32List and Int32List are used within the file.
| @@ -1,5 +1,5 @@ | |||
| import 'dart:math'; | |||
| import 'dart:typed_data'; | |||
|
|
|||
There was a problem hiding this comment.
The removal of import 'dart:typed_data'; will cause compilation errors. The types Float32List and Int32List used extensively in this file (e.g., in the RawAtlasPainter typedef and the AtlasSpoilerDrawer class) are defined in the dart:typed_data library. These types are not re-exported by the Flutter framework imports such as package:flutter/foundation.dart or package:flutter/material.dart.
| import 'dart:typed_data'; |
No description provided.