LoginSignup
0

More than 5 years have passed since last update.

複数のアプリでの共通テーマ

Posted at

複数のアプリでの共通テーマ

自分用のメモ。

  1. workspace を作る
    1. sencha -sdk /path/to/sdk generate workspace .
  2. アプリケーションを作る
    1. cd ext
    2. sencha generate app MyApp ../myapp
  3. テーマを作る
    1. アプリケーションフォルダに移動
    2. sencha generate theme -e ext-neptune-theme my-theme
  4. app.json でテーマを変更
    1. "theme": "my-theme"
  5. package.json の namespace 設定

    "sass": {
    "namespace": ""
    }

    こうして空にしてやらないと、アプリにテーマが設定されない

  6. 実際の scss ファイルは、scss/var/MyApp/ 下に配置する

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0