Giter Club home page Giter Club logo

Comments (7)

cyanzhong avatar cyanzhong commented on June 14, 2024

理论上只要是非 browser-based 的库都可以引入,也做了相关的准备。

现实中还没有实现出来。

from xteko.

miniers avatar miniers commented on June 14, 2024

期待,
还有mac上开发时,现在是写了个node监控js文件变更post到内置的http服务来上传,
是否可以支持webdav或者ftp之类的,这样会更方便点😅

from xteko.

cyanzhong avatar cyanzhong commented on June 14, 2024

如何在桌面端开发更为方便是一定会考虑的 🤔

from xteko.

miniers avatar miniers commented on June 14, 2024

img_0248
顺便提交一个bug,使用了一个list来内嵌TEXT组件用以输入内容,当text过多,编辑最后一个text的内容时,键盘会把text组件遮挡,包括原生键盘

from xteko.

miniers avatar miniers commented on June 14, 2024

这是复现代码,在最新的tf版本中能够复现

$ui.render({
  layout: $layout.fill,
  views: [{
    type: "button",
    props: {
      title: "生成配置"
    },
    layout: function (make) {
      make.left.right.bottom.inset(10)
      make.height.equalTo(32)
    },
    events: {
      tapped: function (sender) {
        //selectItem()
      }
    }
  }, {
    type: "list",
    layout: function (make) {
      make.left.top.right.equalTo(0)
      make.bottom.equalTo($("button").top).offset(0)
    },
    props: {
      rowHeight: 150,
      data: ['1','2','3','4','5','6','7','8','9','10'].map(function (cus) {
        let cfg = cus;
        if(typeof cus === 'string'){
          cfg = {
            name:cus
          }
        }
        return {
          title: `${cfg.name} ${cfg.text?`(${cfg.text})`:''}`,
          rows: [{
            type: "text",
            props: {
              id: cfg.name,
              text:  '',
            },
            layout: function (make) {
              make.edges.inset(5);
            }
          }]
        }
      })
    }
  }]

})

from xteko.

miniers avatar miniers commented on June 14, 2024

😂另外希望文件系统可以增加 icloud drive支持,现在保存的配置无法方便导入导出也是不爽呀🤓

from xteko.

cyanzhong avatar cyanzhong commented on June 14, 2024

键盘遮挡问题你单开一条 issue 吧

from xteko.

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.