Questions tagged [floating]

This tag is related to GUI elements that either should be or appear to be floating above a panel or background, or in case of certain types of general layout.

This tag is related to GUI elements that either should be or appear to be floating above a panel or background, or in case of certain types of general layout.

800 questions
2
votes
2 answers

How to make floating widget flutter?

I want to make a floating widget but not floating all the time, when the widget is pulled up from the floating navigation bar it will appear like the picture in the middle How to make a widget like this middle image?
2
votes
1 answer

How to implement Mini View like PipView in mobile app with React-Native

I want to implement a Mini View or Floating View (for WebRTC calling) in React-Native that should be persist or opened until we close it and it should be remain opened if we navigate to other screen any idea about this?
famfamfam
  • 396
  • 3
  • 8
  • 31
2
votes
1 answer

Floating Point numbers on VAX machine

I have the source code in RTL/2 program languange of an old application running on a VAX machine. Unfortunately I don't have the possibility\ability to re-compile the application. I have to change some coefficent ( real numbers, "code wired") So I…
Andak
  • 124
  • 12
2
votes
1 answer

jQuery Floating Header Is Laggy

Environment: Rails 3.1rc5 with jQuery, ubuntu 11.04, Google Chrome (13), Mozilla Firefox (6.0) I am working on a project that has a pretty limited, in-office rollout - so I can safely say that we will always have this running in the latest version…
d3vkit
  • 1,942
  • 1
  • 24
  • 36
2
votes
1 answer

Make dropdown menu floating in bootstrap

I'm trying to create a quite complex navbar using bootstrap. I wonder wether it is possible to make the dropdown menu floating, so it does not make the navbar big and ugly. The picture is quite self-explanatory: Code: .menu-item-seleccionado { …
Jaime02
  • 299
  • 7
  • 21
2
votes
1 answer

How to make a specific column be moving in the SWT table in Eclipse RCP?

I have created a SWT table with 23 columns in the Eclipse RCP. The table has only Horizontal Scroll Bar. In runtime, it is obvious that the columns to the left get obstructed when we scroll to Rightward and vice-versa because our view (window) can…
yayayokoho3
  • 1,209
  • 2
  • 16
  • 40
2
votes
1 answer

Bootstrap 4: Prevent the column that moves to the right (using float on min-width:1200px) from pushing the other column down

This may have been answered else where, but I've looked at loads of other posts and I can't see a directly related answer other than this: Bootstrap: move div from one column to another, order counts for mobile devices This has been really helpfull…
Alex
  • 59
  • 7
2
votes
0 answers

Python2 vs Python3 float representation

Here is a simple python snippet which generates 100 random numbers between 0 and 1, sum it, shuffle it, sum it and so on... import random rands=[] for i in range(0,100): …
Gaurav Neema
  • 280
  • 3
  • 11
2
votes
0 answers

facebook's chat head react native

I'm having trouble creating facebook-like chat heads. I am using the react-native-floating-bubble library. When I call the showFloatingBubble () function, it falls into catch and the chat head is not displayed. Could someone help me solve this…
2
votes
2 answers

How do I fix the Type Error: a float is required?

It says that a float is required. Can anyone help me fix this code: from time import sleep print("Welcome to this game of random.") ; sleep(1.0) print("Type in your name:") ; sleep(0.5) playerName = raw_input() print("Welcome " + playerName + " Type…
Sergio Ley
  • 85
  • 1
  • 14
2
votes
1 answer

The value of NaN in Matlab seems to be wrong

The version of my MATLAB is: 9.3.0.713579 (R2017b) According to IEEE 754-2008, the value of NaN in MATLAB is not correct: >> format hex >> single(+NaN) ans = single ffc00000 >> single(-NaN) ans = single 7fc00000 Since the MSB of…
HYF
  • 163
  • 1
  • 5
2
votes
1 answer

why in android mobile version 8.1 [oreo] the Floating Widget service is not working? [app is getting crushed]

I was working in Floating Widget service icon ,the code is working fine till android version 6.1,i am able to get the notification icon from the server when it send the notification. but while testing it in android version 8.1 the application…
2
votes
2 answers

How do I fix floating CSS label always being active showing 'invalid input' in my form?

I am trying to get my survey form questions to have floating labels that are still visible when the user is inputting data, and after adding email validation with an error message, the second question is broken. It shows as being always invalid,…
Pixxel
  • 71
  • 9
2
votes
1 answer

Fair assumptions about std::hash implementations

We use several forms of hashing in a research database project. E.g., for radix clustering where we use the n least significant bits to determine the cluster id. We use std::hash for hashing, which is sufficient for us. However, while we are aware…
Bouncner
  • 2,124
  • 1
  • 19
  • 19
2
votes
1 answer

How to prevent floating widgets in tkinter python

I have the following UI for my tkinter application. My problem is that the OptionsMenu with long text moves all other widgets to the right and eventually out of frame. Solutions that I can think of: 1) Wrap text to next row. 2) A way that StringVar…
technazi
  • 888
  • 4
  • 21
  • 42