Giter VIP home page Giter VIP logo

Comments (3)

ccgitgit avatar ccgitgit commented on June 16, 2024

官方有例子 不过我不知道如何自定义覆盖brandPrimary和brandPrimaryTap的值,知道的麻烦告知。

from ant-design-mobile-rn.

hezhii avatar hezhii commented on June 16, 2024

官方例子中覆盖主题的方法也就是通过一个脚本修改主题文件,找到相应的变量覆盖即可。
@ccgitgit

/// theme.js
const brandPrimary = '#4c6fff';
const brandPrimaryTap = '#3651d9';

module.exports = {
  brand_primary: brandPrimary,
  brand_primary_tap: brandPrimaryTap,
  primary_button_fill: brandPrimary,
  primary_button_fill_tap: brandPrimaryTap,
};
/// custom-rn-theme.js
const path = require('path');
const fs = require('fs');
const defaultVars = require('antd-mobile-rn/lib/style/themes/default.native');

const customVars = require('./theme');
const themePath = path.resolve(require.resolve('antd-mobile-rn'), '../style/themes/default.native.js');
const themeVars = Object.assign({}, defaultVars, customVars);

if (fs.statSync(themePath).isFile()) {
  // 修改下面的变量没有用,因为上面导入的时候,变量已经被替换成值了,只能在 theme.js 覆盖。
  fs.writeFileSync(
      themePath,
      'var brandPrimary = "#108ee9"; var brandPrimaryTap = "#1284d6";module.exports = ' + JSON.stringify(themeVars),
  );
}

from ant-design-mobile-rn.

BANG88 avatar BANG88 commented on June 16, 2024

@hezhii 👍 另外请关注 #119 主题切换在3.0会重构,将来会更方便使用

from ant-design-mobile-rn.

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.