Pixate is a mobile development engine for the rapid creation of native apps with a focus on rich user experience, social integration, and performance.
Questions tagged [pixate]
82 questions
6
votes
6 answers
Change System Font for iPhone application - entire Application
Is there a way I can change the System Font for an entire Application?
I want to define the font for the entire Application so that I don't have to go to individual labels or individual fonts to change it. I would like a universal definition which…

vivianaranha
- 2,781
- 6
- 33
- 47
5
votes
0 answers
Pixate Freestyle library alternatives?
We are using Pixate Freestyle for multiple projects right now, but it looks like this library is no longer being developed.
Its functionality on Android is questionable (ex. custom fonts not working yet), and we can't really spend our time fixing…

andrejbroncek
- 421
- 5
- 17
5
votes
2 answers
How do I define my CSS to display 'HelveticaNeue-Light' using Pixate Framework?
Clearification! This question is about the iOS framework Pixate (http://www.pixate.com), and not regular CSS inside of a UIWebView.
Code in default.css :
.title {
font-family: 'Helvetica Neue';
font-weight: light;
font-size: 30px;
color:…

bobmoff
- 2,415
- 3
- 25
- 32
4
votes
3 answers
Presence of UITextField and Pixate Freestyle Crashes on iOS 9
All of my view controllers that contain UITextField objects crash with the following on iOS 9 in the Simulator:
-[UITextField preventStyling]: unrecognized selector sent to instance 0x7fa8b96d6330
Failed to set (styleClass) user defined inspected…

Clifton Labrum
- 13,053
- 9
- 65
- 128
4
votes
1 answer
Adding User Defined Runtime Attributes?
Is there a way to add user defined runtime attributes to a button in Xamarin's storyboard designer?
I'm trying to get Pixate Freestyle to work and need to define the attributes. I can only find the place to define them within xcode.

Deekor
- 9,144
- 16
- 69
- 121
4
votes
1 answer
Pixate apply border to single side
Is there a way to set only the top border for an element through Pixate? I don't see it in the docs.
I've tried both of these, but they apply the border to all four sides:
#footer {
border-top:5px solid #FF0000;
}
#footer {
border:5px solid…

tybro0103
- 48,327
- 33
- 144
- 170
3
votes
1 answer
How to initialize Pixate Freestyle with Swift
How do I initialize Pixate Freestyle on iOS using Swift?
The documentation say to do
int main(int argc, char *argv[])
{
@autoreleasepool {
[PixateFreestyle initializePixateFreestyle];
return UIApplicationMain(argc, argv, nil,…

djunod
- 4,876
- 2
- 34
- 28
3
votes
1 answer
How do I get a specific CSS value in Pixate programmatically?
Is there a way to get values from Pixate programmatically? I'd like to be able to get a CSS value for a specific id, class, or element.

Perishable Dave
- 2,858
- 2
- 24
- 29
3
votes
2 answers
How can I use real-time CSS styling with Titanium and Pixate
I want to use real-time CSS styling in a Titanium app with Pixate. In their documentation, they mention a video which demonstrates how to setup this in XCode.
Another video demonstrates this within a Titanium App, but I didn't find an explanation on…

nanoman
- 1,069
- 12
- 27
2
votes
1 answer
Does Pixate Freestyle support custom fonts on Android?
Is it possible to use typeFaces with Pixate Freestyle on Android?
For example:
label{
font-family: "MyCustomFont";
}
Remember that I'll put the font file inside the Assets folder.

Rodrigo Amaro
- 23
- 2
2
votes
1 answer
how to style a button using pixate (android)
I am new to using pixate so I am sorry if my question sounds naive
I want to style a button ,I have created an Activity and added css in my assets folder but still there is no change in the button.
MainActivity
public class MainActivity extends…

Prerak
- 109
- 10
2
votes
1 answer
Can letter-spacing be applied to UINavigationBar's title with Pixate?
The letter-spacing property appears to have no effect on the title child in a navigation bar using Pixate.

pixatepaul
- 251
- 2
- 5
2
votes
1 answer
Status bar color with Pixate
I just found Pixate to style iOS apps. But I am having a problem with it.
When I style the navigation bar (in iOS 7) with the following CSS using Pixate
navigation-bar {
background-image: linear-gradient(rgb(84,177,222),…

Matthijn
- 3,126
- 9
- 46
- 69
1
vote
0 answers
My styles from Pixate-Freestyle not styling my views in rubymotion
I am a beginner trying to use RubyMotion-PixateFreestyle, I have installed the gem, added the framework to \vendor and i run the simulator. I don't receive any errors but still the css has no effect on my views.
As example just I try adding the…

eige
- 11
- 2
1
vote
1 answer
Pixate to Android studio
i am working on designing Android App UI and i wonder if it is possible to export Pixate prototype to android studio ? have anyone tried or having an idea how to do that ?

Mohammed al-kahtani
- 65
- 11