Navigation

    Monaca & Onsen UI
    • Login
    • Search
    • Tags
    • Users
    • Blog
    • Playground
    1. Home
    2. emccorson
    E
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    emccorson

    @emccorson

    administrators

    15
    Reputation
    256
    Posts
    2229
    Profile views
    4
    Followers
    0
    Following
    Joined Last Online

    emccorson Follow
    administrators

    Posts made by emccorson

    • RE: Android debug build - failed

      If you have a paid plan on Monaca, I would suggest contacting Monaca Support Team. They will be able to debug your project to locate the error. At the moment, it’s hard to know what’s going on without seeing your project.

      posted in Monaca Tools
      E
      emccorson
    • RE: How to use Google's Material Icons?

      The Material icons are Material Design Iconic Font v2.2.0.

      The full list is here:
      http://zavoloklom.github.io/material-design-iconic-font/cheatsheet.html

      So that means that the icons don’t completely match up with the ones you linked, but hopefully you can find suitable ones there.

      Come to think of it, I’m not sure why we don’t use the official ones. I will look into it…

      posted in Onsen UI
      E
      emccorson
    • RE: monaca remote upload

      Thanks for the report.

      At the moment, only debug and release options seem to be supported, but if you use --browser you can select the Debugger build in the GUI.

      posted in Monaca Tools
      E
      emccorson
    • RE: RTL right to left Carousel

      That’s probably more bother than it’s worth to try and fix. I would suggest just adding your items in reverse order e.g.

      <ons-carousel>
        <ons-carousel-item>third</ons-carousel-item>
        <ons-carousel-item>second</ons-carousel-item>
        <ons-carousel-item>first</ons-carousel-item>
      </ons-carousel>
      
      posted in Onsen UI
      E
      emccorson
    • RE: RTL right to left Carousel

      The carousel already swipes left and right if you have swipeable set.

      All you need to is set the initial starting item to the last one by setting the initial-index to the number of items you have minus 1. So if you have 3 items in your carousel set it to 2:

      <ons-carousel initial-index="2" swipeable></ons-carousel>
      
      posted in Onsen UI
      E
      emccorson
    • RE: How to change text color in ons-tab

      In that case you need to set a CSS color rule on the tab’s button (it has the class tabbar__button).

      For example, you could create a class custom-color for the ons-tab and a CSS rule like:

      <ons-tab class="custom-color"></ons-tab>
      
      .custom-color .tabbar__button {
        color: green;
      }
      
      posted in Onsen UI
      E
      emccorson
    • RE: Ons-tabbar how to use?

      The link just leads to an empty editor. Can you try again please?

      posted in Onsen UI
      E
      emccorson
    • RE: Ons-tabbar how to use?

      Can you post a minimal sample that shows the problem using the Playground?:
      https://onsen.io/playground/

      posted in Onsen UI
      E
      emccorson
    • RE: How to change text color in ons-tab

      Yes, you can create a custom theme for Onsen UI here:
      https://onsen.io/theme-roller/?customize

      Scroll to the Tabbar section and change the colour as needed, then download and add to your project.

      posted in Onsen UI
      E
      emccorson
    • RE: push backend errors

      This may be a temporary server error.

      Please note that if you are using Monaca Backend, support for it is ending, so you will need to move to something else such as cordova-plugin-firebasex.

      posted in Monaca Tools
      E
      emccorson