Questions tagged [jetpack]

Jetpack is a WordPress plugin that enables self-hosted WordPress installs to connect to WordPress.com to get additional features, powered by its cloud infrastructure.

Jetpack is a WordPress plugin that enables self-hosted WordPress installs to connect to WordPress.com to get additional features, powered by its cloud infrastructure.

445 questions
5
votes
2 answers

Activating the JetPack WordPress plugin when running on Heroku?

I get the following error when attempting to activate the JetPack plugin on my WordPress instance I have running on Heroku. Jetpack could not contact WordPress.com: register_http_request_failed. This usually means something is incorrectly configured…
jaxzin
  • 13,471
  • 4
  • 19
  • 19
4
votes
0 answers

How to change initial Talkback focus when code Android View in Jetpack Compose

Basically, I am looking for a equivalent in Jetpack Compose of the sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_FOCUSED) used in xml. Currently, my page looks in this structure: Surface { TopToolbarBar() { Row() { …
Max Xu
  • 51
  • 2
4
votes
1 answer

Jetpack compose change in uiState doesn't trigger recomposition

I think I haven't quite wrapped my head around how compose states work yet. I'm not able to trigger a recomposition when an item in the uiState changes. I'm building an app that need notification access, so for that I'm navigating the user to the…
4
votes
1 answer

How to add multiple Tags in Jetpack Compose

I want to achieve the same like adding tags in stackOverFlow question where we select the tags for the question how to do it in jetpack compose like this where on clicking the "x" icon should remove the tag I started with this way but confused…
4
votes
2 answers

Changing the jetpack compose remember variable from within another function

I am developing an application for android devices, using the jetpack compose library. Example I created inside a compose function var taskVeriable = remember {mutableStateOf("Hello World")} I need to update the value of variable from another…
Yavo
  • 43
  • 5
4
votes
3 answers

How to calculate empty space in lazy column after last visible item

How to calculate empty space in lazy column after last visible item in Jetpack compose.
4
votes
2 answers

Wordpress xmlrpc.php 301 Moved Permanently

I have a site setup on Digital Ocean using their Wordpress droplet installer. I have then installed Jetpack. The Site Health tool reported that Jetpack is not connected and that I should visit the Jetpack.com debugger. I did so and put my website…
Mark Johnson
  • 575
  • 4
  • 20
4
votes
1 answer

Run Postman jetpack test thought Newman commands

I'm using the Postman Jetpacks tests collections, they work very well, but I must run the test inside the Postman application. Actually I need to run the tests I designed in Postman Jetpack using a command line to make it scriptable. My approach is…
Manjar
  • 3,159
  • 32
  • 44
3
votes
1 answer

I can't add my list to lazycolumn. how can i add

I'm adding my notes in "items" but I'm getting this error. I couldn't find the reason, can you help? @Composable fun NotesList() { val notesList = remember { mutableStateListOf() } LazyColumn { items(notesList) {note-> …
3
votes
1 answer

Reset mutableStateOf if the initial value changes - Jetpack Compose

I am new to Jetpack Compose and I just started trying it out by creating a timer application but I ran into a problem. In my application each task has a different duration and after one of them is finished (the time has elapsed) then the next one…
3
votes
2 answers

How to load image from assets in Jetpack Compose

I have hundreds of png files in assets folder and I want to load them into Image composable. But what I can use only images in drawable folder. how to load images from assets into Image?
3
votes
2 answers

Custom Compose Arrangement to add extra spacing at beginning and end of a LazyRow/LazyColumn

How can I create a custom Arrangement for LazyRow to add additional spacing at beginning and end, but have even spacing in between? Start|< more space> Item 1 Item 2 Last Item |End object CustomArrangement : Arrangement.Horizontal { override fun…
3
votes
2 answers

In jetpack compose how to add numbers(counts) near icons(like,comment)

how to add numbers near the icon in android jetapck compose, i have attached snap below like that.please help me to solve the problem.
user20108370
3
votes
2 answers

How to load images from the internet into a widget with Jetpack Glance?

I have a widget developed with Jetpack Compose and with the Jetpack Glance library, this widget is a LazyColumn list, in which I pass the information after making a query to the Room Database database. To try to load the image I used Image() with…
3
votes
2 answers

Vertically Centering Contents of BottomSheet regardless of its state [Fully Expanded or Half Expanded]

I'm trying to implement a BottomSheet in Android (using either BottomSheetDialogFragment or Jetpack's ModalBottomSheetLayout) that vertically centers its content depending on whether the sheet is fully or partially expanded. In both implementations,…
Matt Hamann
  • 1,488
  • 12
  • 24
1
2
3
29 30