Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
2711ea8
Improved documentation about ignored parameters in IO module.
andreacioni Jul 9, 2023
fff92c0
improved comments
andreacioni Jul 9, 2023
adbf84f
fix changelog
andreacioni Jul 11, 2023
bbcf8ec
removed references to a new version
andreacioni Jul 17, 2023
9f25c1f
bump version
andreacioni Jul 17, 2023
694e210
removed NEXT and set new version
andreacioni Jul 17, 2023
694d807
Merge branch 'main' into main
andreacioni Jul 17, 2023
c108cc8
Merge branch 'main' into main
andreacioni Jul 17, 2023
86b22b0
Merge branch 'main' into main
andreacioni Jul 17, 2023
6c7afa6
Merge branch 'main' into main
andreacioni Jul 20, 2023
e38f619
doc: Add sentence to say mime type is not intended for io implementation
ValentinVignal Jul 22, 2023
6abf97d
chore: Update version
ValentinVignal Jul 22, 2023
765987c
Merge remote-tracking branch 'upstream/main' into cross-file/document…
ValentinVignal Jul 31, 2023
bc2871b
Merge branch 'main' into cross-file/document-that-mime-type-is-not-fo…
ValentinVignal Jul 31, 2023
b709d73
Merge branch 'flutter:main' into main
andreacioni Jul 31, 2023
f139130
Merge branch 'flutter:main' into main
andreacioni Jul 31, 2023
53ff79d
Merge branch 'main' into cross-file/document-that-mime-type-is-not-fo…
andreacioni Jul 31, 2023
ac4ecca
Merge pull request #1 from ValentinVignal/cross-file/document-that-mi…
andreacioni Jul 31, 2023
b79f71a
fix wrong version
andreacioni Jul 31, 2023
67bd439
Merge branch 'main' into main
andreacioni Aug 1, 2023
227f8eb
Merge branch 'main' into main
andreacioni Aug 2, 2023
565ce62
Merge branch 'main' into main
andreacioni Aug 12, 2023
782b52e
Merge branch 'main' into main
andreacioni Aug 23, 2023
3c8b540
Merge branch 'main' into main
andreacioni Aug 24, 2023
da4eed8
Merge branch 'main' into main
andreacioni Aug 30, 2023
9883eb0
remediating reported issues
andreacioni Aug 30, 2023
6c01856
version NEXT
andreacioni Aug 30, 2023
c33dc0d
bump version in pubspec.yaml
andreacioni Aug 30, 2023
7f813fd
add empty line
andreacioni Aug 30, 2023
6ff1faa
do not use NEXT as per guidelines
andreacioni Aug 30, 2023
222ef43
Merge branch 'main' into main
andreacioni Aug 31, 2023
7ebfdbf
Merge branch 'main' into main
andreacioni Sep 18, 2023
66b66e5
resolving PR comments
andreacioni Sep 18, 2023
b5f02c9
Merge branch 'main' into main
andreacioni Sep 18, 2023
5655816
name and length documentation moved to base.dart
andreacioni Sep 21, 2023
85aa45c
Merge branch 'main' into main
andreacioni Sep 21, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
improved comments
  • Loading branch information
andreacioni committed Jul 9, 2023
commit fff92c00a37aee110c5655aef320eb2e74f4e38c
4 changes: 2 additions & 2 deletions packages/cross_file/lib/src/types/io.dart
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ class XFile extends XFileBase {
@override
String get path => _file.path;

/// the name extracted from [path].
/// the name extracted from the last part of [File.path].
///
/// **Be aware**, the name here is not the one
/// you may have passed in the constructor/factory.
@override
String get name => _file.path.split(Platform.pathSeparator).last;

/// the length of the file.
/// the [File.length].
///
/// **Be aware**, the length here is not the one
/// you may have passed in the constructor/factory.
Expand Down