Code Monkey home page Code Monkey logo

Comments (9)

davidbartonau avatar davidbartonau commented on July 4, 2024 2

@JohnmarkBeaty sorry, no. The trick is just to stop the keyboard from popping up and down, otherwise it will go on forever.

I find that once I stop it, if I don't move between pages it tends to work but going from page to page is an exercise in frustration.

from saber.

davidbartonau avatar davidbartonau commented on July 4, 2024 1

This also effects me. App is almost unusable.

It seems to open a text input field at the top left of a page when scrolling and in some cases it just goes in and out of text mode in an infinite loop until I trick it into stopping.

from saber.

thiswillbeyourgithub avatar thiswillbeyourgithub commented on July 4, 2024 1

To me this is fixed in 0.24.0

from saber.

JohnmarkBeaty avatar JohnmarkBeaty commented on July 4, 2024

Same issue here. It keeps opening text mode and I'm unable to exit. It's frequently attempting universal clipboard and I'm unable to get it to stop. It's unusable for me as well.

I tried building and loading 0.23.2 but I just get a blank white screen.

If you have any suggestions please let me know! 🙏

from saber.

JohnmarkBeaty avatar JohnmarkBeaty commented on July 4, 2024

@davidbartonau

until I trick it into stopping.

Have you found a consistent way to trick it? I struggle to find repeatable steps that let me take notes.

from saber.

JohnmarkBeaty avatar JohnmarkBeaty commented on July 4, 2024

Quick update, I was finally able to build and run this locally on my iPad.

Here's what I did:

  1. Checked out v0.23.2
  2. Updated line 36 of pencil_sound.dart 👉 respectSilence: false,
  3. Updated lines 110-124 of file_manager.dart to the following
    👇👇👇
 if (!Platform.isIOS) {
      rootDir.watch(recursive: true).listen((FileSystemEvent event) {
        final type = event.type == FileSystemEvent.create ||
                event.type == FileSystemEvent.modify ||
                event.type == FileSystemEvent.move
            ? FileOperationType.write
            : FileOperationType.delete;
        String path = event.path
            .replaceAll('\\', '/')
            // The path may or may not be relative,
            // so remove the root directory path to make sure it's relative.
            .replaceFirst(documentsDirectory, '');
        broadcastFileWrite(type, path);
      });
    }
  1. Updated the signing profiles in xcode to use my developer account and ran on device.

I confirmed the text issue is not showing up in this version ✅

from saber.

thiswillbeyourgithub avatar thiswillbeyourgithub commented on July 4, 2024

Update : to me it seems triggered by the page transition. If i move far away so that the transition or top right corner is not visible, the keyboard seems to stay down

Edit: actually that's just what @davidbartonau said sorry

from saber.

Crowerade avatar Crowerade commented on July 4, 2024

Same issue here, the keyboard opens whenever I enter a note and when I scroll down and up. I noticed that although the keyboard is there and does type in the note, the tool is not selected

Edit: Actually it toggles whenever a new page appears on the screen.

from saber.

Benjamin-Watson0 avatar Benjamin-Watson0 commented on July 4, 2024

That's right, the problem does exist, and here is the related video.
https://github.com/saber-notes/saber/assets/112467275/04a46368-678b-4780-a02d-18718251a890

from saber.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.