Questions tagged [pixate]

Pixate is a mobile development engine for the rapid creation of native apps with a focus on rich user experience, social integration, and performance.

82 questions
0
votes
1 answer

Pixate Freestyle for iOS - Setting background color to UINavigationBar takes no effect

I am using Pixate Freestyle CSS rendering framework for iOS. An issue has been bothering me these days. I tried to set backgroud color to UINavigationBar in one of my project, but it took no effect and the color always turned out white. However, it…
Robin Kam
  • 41
  • 3
0
votes
1 answer

Pixate: How to change the background color of the selected tab?

What CSS should I use to change the background color of the selected UITabBarItem using pixate? I've tried this, and it doesn't seem to work. tab-bar-item:selected { background-color: gray; } What am I doing wrong?
Curtis Shipley
  • 7,990
  • 1
  • 19
  • 28
0
votes
2 answers

Does Pixate Freestyle support custom fonts?

I've added some custom fonts to my iOS app and tried applying them using Freestyle CSS like label { font-family : "Niconne-Regular"; color : #446620; } but it did not work (the colour attribute did get applied). I was able to…
Janos
  • 1,987
  • 3
  • 17
  • 24
0
votes
1 answer

Pixate Freestyle - Dynamically setting styles on UINavigationBar

This may be the same issue as Pixate Freestyle: clear styleClass property does not reset style. But I can't tell. I have styled a UINavigationBar and the title and left and right buttons. My view is a table view. When I select a cell I restyle the…
Megasaur
  • 626
  • 8
  • 20
0
votes
0 answers

Extracting Color Attributes from CSS

is it possible to extract Colors for certain CSS-Classes or id's as UIColor in Xamarin. In my default.css I would create an id like this: #colorid { color: #FFF; } And then access the Color kind of like this: UIColor color =…
0
votes
1 answer

Does Pixate have any sort of callback mechanism for keyframe animations?

Curious as to whether or not I could subscribe to an event/notification at the end of a keyframe animation. Would anyone know?
jayroh
  • 76
  • 1
  • 5
0
votes
1 answer

Disabling a control with Pixate Freestyle

I have a UIButton with the following css button { size: 50 100; color: #FF0000; } But I want to disable the button based on a style like maybe: button { size: 50 100; color: #FF0000; enabled: true; } Does anyone know how to…
Nick Turner
  • 927
  • 1
  • 11
  • 21
0
votes
0 answers

Button styling with Pixate and MvvmCross

Trying to style a button using Pixate and MvvmCross in a Xamarin application. The class selector does not seem to work. You can see that the main button class does not set the font color to yellow and the background of the button is not blue Has…
Chauncat
  • 248
  • 3
  • 12
0
votes
2 answers

iOS Pixate Freestyle - Updating class on UITableViewCell label does not take effect

I am using Pixate to style table cells. I am dequeuing cells and updating the textLabel class like so: static NSString *CellIdentifier = @"Cell"; UITableViewCell * cell = (UITableViewCell*)[tableView…
Megasaur
  • 626
  • 8
  • 20
0
votes
0 answers

Pixate updateStylesForAllViews not working after updated to PixateFreestyle

I change css files at code side. It was working very well when i use Pixate. I updated my dependencies with Freestyle and i use updateStylesForAllViews it does not work anymore. i have to restart my application to get things done. Any idea ? -…
Alkimake
  • 1,797
  • 14
  • 30
0
votes
1 answer

Pixate supports -webkit-border-image css property?

Anybody knows if Pixate supports in the css the '-webkit-border-image' property? I tried it but does not work. There are other css framework to iOS that support it? Thanks.
0
votes
2 answers

Does pixate/freestyle font-family changes font size as well?

When I set font-family for all labels, fonts are resized to some predefined size. label{ font-family: "Verdana"; } Is there a way to set font-family only and keep original font-size defined in storyboard file?
jakub.piasecki
  • 556
  • 1
  • 5
  • 12
0
votes
1 answer

Pixate Freestyle table-view-cell:selected pseudo class

I have a UITableView with some custom cells containing a view and some labels. The view must have a different background color when the cell is selected (als some other properties but lat's start with getting the selected pseudo class working). I am…
Yoeri
  • 1,876
  • 15
  • 24
0
votes
2 answers

Pixate Freestyle real time css

I have not found any reference of how to get real time css updates using Pixate Freestyle and Xcode 5. If someone could provide the code for what goes into 'didFinishLaunchingWithOptions' in the AppDelegate that would be helpful. Thanks.
0
votes
1 answer

Positioning a UIImageView using Pixate Freestyle

I'm trying to move a UIImageView as a test to see if Pixate is fit for purpose with what i'm working on but i'm not clued up on CSS albeit it seems straight forward enough from the pixate documentation. So i have a simple UIImageView on the right of…
pidge
  • 20
  • 3