Search found 28 matches

Go to advanced search

by aantsypau
Thu Jan 16, 2025 11:56 am
Forum: Issues
Topic: I would like to localize property list values
Replies: 1
Views: 540
 
Jump to post

Re: I would like to localize property list values

In case if you would need to modify -Info.plist file you can do this using cordova-custom-config plugin image.png Add code like this <custom-config-file parent="CFBundleLocalizations" target="*-Info.plist" mode="replace"> <array> <string>en</string> </array> </custom-co...
by aantsypau
Mon Jan 13, 2025 9:41 am
Forum: Issues
Topic: Open Google Maps app (rather than Google Maps webpage) directly
Replies: 1
Views: 272
 
Jump to post

Re: Open Google Maps app (rather than Google Maps webpage) directly

You can use the following approach which open external application which is registered as default map app const query = "53.723337, -69.995790"; if (this.$a.isIOS()) { window.location.href = encodeURI(`maps://?q=${query}`); } else if (this.$a.isAndroid()) { window.open(encodeURI(`geo:0,0?q...
by aantsypau
Thu Sep 19, 2024 9:21 am
Forum: Issues
Topic: Screen Background Image for Light and Dark Modes
Replies: 1
Views: 25169
 
Jump to post

Re: Screen Background Image for Light and Dark Modes

You can setup background image from component properties panel, for that you need to select the Content component and specify the value of Bg Image property In case when it is needed to apply background image for all screen and adjust image accord to selected theme you need to add the css code like ...
by aantsypau
Thu Sep 19, 2024 9:20 am
Forum: Issues
Topic: Screen Background Image for Light and Dark Modes
Replies: 1
Views: 25169
 
Jump to post

Screen Background Image for Light and Dark Modes

I’d like to update the background of the app (I believe this is referred to as the Index Screen) with a new image for both dark and light modes (see attached screenshot). From what I understand, I’ll likely need to update the 'Extra SCSS' in Theme > Dark > Extra SCSS, is that correct? If so, could y...
by aantsypau
Fri Aug 30, 2024 7:03 am
Forum: Issues
Topic: Can I store rich text in an appery.io database?
Replies: 1
Views: 17868
 
Jump to post

Re: Can I store rich text in an appery.io database?

Yes of course it is very easy

You need to create a screen variable
Specify the value of ngModal as this variable
Map data variable on database (or another server) in the mapping
by aantsypau
Fri Aug 30, 2024 7:02 am
Forum: Issues
Topic: Can I store rich text in an appery.io database?
Replies: 1
Views: 17868
 
Jump to post

Can I store rich text in an appery.io database?

Hello, I have a form with a rich text component. When I was building the mapping for the form to create a row in the appery.io database, I di not see a way to add the value in a rich text component to the column. Is it possible to store the value in a rich text component in an appery.io database?
by aantsypau
Wed Aug 14, 2024 7:37 am
Forum: Issues
Topic: List itens side by side
Replies: 1
Views: 20039
 
Jump to post

Re: List itens side by side

You can easily achieve this result by replacing the list component with a grid component. Apply the *ngFor attribute to the cell component. Also, ensure that the cell width is set to 6. Alternatively, you can use an HTML component with a container type div and set the width to 50%.
by aantsypau
Wed Aug 14, 2024 7:37 am
Forum: Issues
Topic: List itens side by side
Replies: 1
Views: 20039
 
Jump to post

List itens side by side

I have a list component, I would like to list the records side by side (as in the image) and not as a commom list.
I have this code:
*ngFor = let item of lista_grupos; index as i

What do I have to do to make them stay side by side?
by aantsypau
Wed Jul 31, 2024 7:03 am
Forum: Issues
Topic: Delivery error
Replies: 0
Views: 21133
 
Jump to post

Delivery error

The build worked for IOS - but on transported I get this
by aantsypau
Sat Jul 27, 2024 12:40 pm
Forum: News
Topic: Searchable Dropdown List
Replies: 1
Views: 39592
 
Jump to post

Re: Searchable Dropdown List

We recommend using the Appery Searchable Select component. To add it to your application, simply import the corresponding Appery plugin. Alternatively, you can use the equivalent component from the PrimeNG library.

Go to advanced search