740 questions
0
votes
0
answers
14
views
How do you import Material Icons to NativeScript project?
I'm trying to build a Material Design checkbox using Material Icons. Specifically, just for this case, I plan to use the check_box_outline_blank, select_check_box, and indeterminate_check_box.
Here's ...
0
votes
1
answer
60
views
$navigateTo error: Failed to resolve Frame
I have a NativeScript-Vue app using Firebase like this:
<!-- src/components/App.vue -->
<script setup lang="ts">
import { firebase } from '@nativescript/firebase-core';
import '@...
1
vote
0
answers
148
views
nativescript, module flutter: page app Android assets Unable to load asset:"AssetManifest.bin" The asset does not exist or has empty data
I'm implementing a flutter module in a nativescript project. Basically a widget on a page that displays an asset that is normally stored in App_Resources/Android/src/res/drawable-* in Android... in ...
2
votes
2
answers
262
views
NativeScript duplicate kotlin class on `ns run android`
I've been working on an application that I got from a leaving colleague and I am new to NativeScript.
When trying to run an app on an Android emulator using the ns run android command I get the ...
0
votes
1
answer
39
views
Add Marker on Narivescript-vue Android using @nativecript/google-maps
i try to add a marker with Nativescript-vue using @nativescript/google-maps package, bu it says map.addMarker is not function
onReady(event) {
this.mapView = event.object;
this.addMarker(...
0
votes
1
answer
191
views
Trouble Configuring ANDROID_HOME and PATH Mac OS
ERROR:
No compatible version of the Android SDK Build-tools are installed on your system. You can install any version in the following range: '>=23 <=33'.
When I run echo $ANDROID_HOME ...
-1
votes
1
answer
114
views
How do you programmatically trigger a tap event on a button?
Ive tried all sorts but cant seem to get it work and there seems to be very little on the subject..
i currently have this
<Button text="Retrieve" @tap="handleRetrieve" ref="...
0
votes
1
answer
149
views
Nativescript Vue v-show with transition
I am struggling with using of v-show with Nativescript. I was trying to make an animation described in https://www.nuvious.com/posts/nativescript-vue-transitions .
When using v-show the element does ...
0
votes
1
answer
751
views
Installing NativeScript environment, issue with cocoapods on M1 mac in 2023
I am having issues with installing NativeScript. My machine uses a M1 chip, I'm reading M1 and cocoapods have issues. Other SO answers are not fixing the issue, and some are outdated. Hoping we can ...
0
votes
1
answer
50
views
Nativescript 8.5 android and ios app size is > 200mb. is it ok?
After switching from ns 7 to ns 8.5, the size of the application has grown by 2 times, given that the application code has not changed at all. This is fine? And if not, what can you please tell me how ...
0
votes
1
answer
147
views
Nativescript Vue migration from 7 to 8.5.3 (Android 8.5.0) build error
I'm trying to migrate from NS 7 to NS 8.5.3 with android 8.5.0
webpack version is 5.0.14
Seems like some problem with vue-compiler
I'll be very thankful for any help
System.err: TypeError: Cannot read ...
0
votes
1
answer
200
views
How to change icon color in SearchBar component Nativescript + Vue?
(https://i.sstatic.net/f8DyP.jpg)
<SearchBar
class="w-full rounded-full"
textFieldHintColor="#fff"
color="#fff"
textProperty="#fff"
...
0
votes
1
answer
203
views
Nativescript 7+ incorrect versionName
Nativescript version: 8.3; vue/ts.
I'm attempting to assign versioning to my Nativescript application, however it doesn't reflect accurately. Everything I've tried results in a versionName of 1.0.0 ...
0
votes
0
answers
545
views
Nativescript fallback exception when referencing external dependencies
Summary
Include details about your goal:
I am attempting to include external libraries in a nativescript (vue) app; specifically openpgp
Describe expected and actual results:
Initially, I expected to ...
0
votes
1
answer
112
views
How To Load HTML Geolocation Api on Nativescript Vue with Webview?
I am very new to nativescript-vue. I was testing my codes on stackblitz. I used webview to load html page. But html geolocation api is not working. What should I do? Thanks in advance.
My Code Is:
<...