Jacopo Guzzo

Results 8 issues of Jacopo Guzzo

fixes #745 Previously the `moveVertical` function only moved the cursor 'node to node' without taking into consideration multiline nodes or some portion of a line with different fontSize (ex: a...

### Bug Description When you use the up/down arrow keys in a long line (which is split into multiple lines because of the screen width), the cursor moves up/down in...

### Bug Description When moving the caret from one line to another in iOS the lines in which the caret passes gets changed ### How to Reproduce Write some lines,...

### Bug Description When going up starting from a single line node to a multiline node the caret goes in the first line of the multiline node instead of the...

Closes #20. --- **Notes:** I also started working on adding a test case to `sqlite_crdt`. Here’s what I’ve done so far: ```dart test('Merge changeset from other crdt', () async {...

**Description:** When merging a changeset between two `sqlite_crdt` instances, the operation fails if the `hlc` value in the changeset is a `String`. The underlying `crdt` package expects `hlc` to be...

This is my class: ```dart import 'package:dart_mappable/dart_mappable.dart'; part 'my_class.mapper.dart'; @MappableClass() class MyClass with MyClassMappable { const MyClass({ required this.myString, }) : myNumber = null; @MappableConstructor() const MyClass._({ required this.myString, required...

bug