https://github.com/loic-sharma/flutter-fix-repro
https://github.com/loic-sharma/flutter-fix-repro
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/loic-sharma/flutter-fix-repro
- Owner: loic-sharma
- Created: 2023-04-20T21:22:49.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-30T21:33:23.000Z (about 2 years ago)
- Last Synced: 2025-02-02T12:48:19.142Z (4 months ago)
- Language: Dart
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Minimal repro for Flutter data-driven fix
I'm following [Flutter's data-driven fixes](https://github.com/flutter/flutter/wiki/Data-driven-Fixes#testing) guide.
I would like to create a fix that migrates this code:```
Clipboard.setData(ClipboardData());
Clipboard.setData(ClipboardData(text: null));
```Into:
```
Clipboard.setData(ClipboardData(text: ''));
Clipboard.setData(ClipboardData(text: ''));
```