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
0
votes
1 answer
Broken inheritance hierarchy when using Pixate within Xamarin.Android app
I'm trying to add Pixate to our cross-platform app built with Xamarin.
In Android app I'm using custom ListView and custom adapter which implements an interface. But when the Adapter property of the list view is being set to my custom adapter its…

Michał Mazur
- 3
- 1
0
votes
0 answers
ListView bad performance using Pixate
I'm using pixate and all works fine but for ListView the scrolling is not fluent. If I remove the PixateFreestyle.init(this); the list has a fluent scroll.
I have added the StrictMode in order to see performance tips and I can see:
StrictMode…

mromer
- 1,867
- 1
- 13
- 18
0
votes
1 answer
linear-gradient not working correctly when using px
I have the following css class:
.bookshelf-view
{
background-color:linear-gradient(to bottom, #c7c8cd 0px, #eaeaec 20px, #abaeb3 21px, #f9f9fa 30, #ffffff 100%) no-repeat;
}
which I apply to a UIView. It works great when I use only % as…

Meda
- 2,776
- 4
- 20
- 31
0
votes
1 answer
Getting image from xcassets with pixate
I am using xcassets to store my images, but I am having some issues to get images using pixate.
If the image is outside xcassets I can use something like background-image: url(image.png); without any issue but this doesn't work with xcassets.
Any…

fnxpt
- 434
- 3
- 13
0
votes
1 answer
Center a View with Pixate
How would I vertically center a view with Pixate?
If I was styling a web element I would do something like this:
element {
margin: 0 auto;
}
Pixate apparently does not have margin but you can use left and right to specify the position from…

Leander
- 27
- 7
0
votes
1 answer
Moving Back Button Down with iOS and Pixate
I'm working on an iPhone app where I'm using Pixate:
navigation-bar back-indicator {
background-image: url(backIcon.png);
background-size: 25;
}
This results in:
however its not centered with the Back text. How do i get the image to move…

userMod2
- 8,312
- 13
- 63
- 115
0
votes
0 answers
App crashing after clicking on button styled with pixate
My app was working fine but after adding the button in default.css I get the following error on clicking the button
02-27 07:42:33.003: E/AndroidRuntime(1944): java.lang.StackOverflowError
02-27 07:42:33.003: E/AndroidRuntime(1944): at…

Prerak
- 109
- 10
0
votes
1 answer
PXUIView pxStyleChildren crash
Just noticed this crash... SIGABRT ABORT at 0x38d141f0
objc_object::sidetable_release(bool) + 116
-[UIWebDocumentView _updateSubviewCaches] + 36
-[UIWebDocumentView subviews] + 86
-[PXUIView pxStyleChildren]
-[PXUIView layoutSubviews]
Any ideas??

fnxpt
- 434
- 3
- 13
0
votes
1 answer
After switch to PixateFreestyle, some styles not apply on load
I switch (with CoccoaPods) from Pixate to PixateFreestyle. I make not change in my code or the style.
Now this style is not applied:
.posTable {
background-color: #003366;
separator-color: #003366;
}
.posTable table-view-cell {
…

mamcx
- 15,916
- 26
- 101
- 189
0
votes
1 answer
Status bar not on top
I've looked and searched and there is a lot of discussion regarding the new way the status bar is handled in ios7. I've found solutions to the problem of extra space between status bar and content.
But my problem is not that there is extra space…

Denis Ricard
- 25
- 7
0
votes
2 answers
Pixate not styling my views first time after launching app on iPad
I am using Pixate to style my views.
My whole application works with storyboards.
My App is an iPad only app.
I have a valid Pixate licenseKey and I am setting this up in the main:
int main(int argc, char * argv[])
{
@autoreleasepool {
…

Bocaxica
- 3,911
- 3
- 37
- 54
0
votes
2 answers
Pixate Status Bar Text Color
The colour of the text in my status bar appears black rather white.
The CSS i'm using to style the navigation bar is:
navigation-bar {
background-color: black;
shadow: none;
}
Any ideas on how to get the text to be white so the user can…

userMod2
- 8,312
- 13
- 63
- 115
0
votes
0 answers
How do I change the fill color of svg file in pixate framework
i'm working on a iOS 7 project, iPhone Retina(4-inch), where I have an UIButton. I'm using Pixate framework 2.0.1 for styling my UI component. I have added a user defined runtime attribute to my UIButton,
key path: 'styleId'
type: string
value:…

gbg_sw4gger
- 61
- 1
- 6
0
votes
1 answer
How to fully style UISearchbar using Pixate?
Pixate seems to be unable to style UISearchBar's UITextField. Neither the text, corner radius etc. is styled, no matter how broadly I select text-field.
Also, there is an annoying dark hairline at the top and bottom of the UISearchBar as soon as I…

leberwurstsaft
- 405
- 1
- 5
- 11
0
votes
2 answers
UIImageView border-radius
I'm trying to style a UIImageView using pixate 2.0.1.
Without styling the image looks like this:
After applying the style bellow I get this output:
.image-photo{
border: 1px solid #0c0;
border-radius: 45px;
}

fnxpt
- 434
- 3
- 13