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.
emccorson
@emccorson
Posts made by emccorson
-
RE: Android debug build - failed
-
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.htmlSo 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…
-
RE: monaca remote upload
Thanks for the report.
At the moment, only
debug
andrelease
options seem to be supported, but if you use--browser
you can select the Debugger build in the GUI. -
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>
-
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>
-
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 classtabbar__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; }
-
RE: Ons-tabbar how to use?
The link just leads to an empty editor. Can you try again please?
-
RE: Ons-tabbar how to use?
Can you post a minimal sample that shows the problem using the Playground?:
https://onsen.io/playground/ -
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/?customizeScroll to the Tabbar section and change the colour as needed, then download and add to your project.
-
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.