3,621 questions
0
votes
0
answers
22
views
Android edge-to-edge and Toolbar height when menu icons are hidden
Since in Android API 35+ the Edge-to-edge behavior is enforced, I'm trying to implement it in my app Toolbar.
This is my current implementation:
<androidx.appcompat.widget.Toolbar
android:id=&...
0
votes
0
answers
30
views
SwiftUI Keyboard toolbar not visible when the TextField is hosted inside a UIKit SplitViewController
I am hosting a SwiftUI View which contains a TextField and Toolbar to be displayed above the keyboard inside the Detail View of UIKit SplitViewController. When the textfield is pressed, the keyboard ...
0
votes
1
answer
27
views
Toggle Toolbar in Jupyter Notebook
I would like to toggle the toolbar in Jupyter Notebook (version 7.2.2). I know this function was present back in the day but now in the View menu there is only "Toggle Zen Mode".
Is there a ...
0
votes
1
answer
35
views
How do I maintain a consistent toolbar across all child screens in a navigation stack?
I have added a toolbar to the root view of my navigation path and it disappears when I segue to the next screen in my path.
I have tried placing it as a modifier to the NavigationStack but then it ...
0
votes
0
answers
15
views
QLPreviewController tool bar background color doesn't work if its a .rtf file
In my case I am using QLPreviewController .rtf file which have more pages. The background color is added with a UIVisualEffectView. I have tried disabling the same via navigationController?....
1
vote
1
answer
110
views
How to add a fullscreen button to the ApexCharts toolbar
I'm using ApexCharts to create charts in a Vue.js project.
I want to customize the toolbar menu to include a viewFullscreen option. The goal is to add a button in the chart's toolbar that allows the ...
0
votes
1
answer
42
views
How can I add a keyboard toolbar button to show the Format sheet in SwiftUI?
How can I add a keyboard toolbar button, which shows the Format sheet by one click. Apple Notes has this functionality in their app like this.
I have tried this.
import SwiftUI
import UIKit
struct ...
3
votes
1
answer
97
views
How to make responsive Toolbar (with collapsible overflowing buttons) without using setTimeout()?
I'm creating a toolbar for my richTextEditor (tiptap). I wanted the buttons overflowing editors width to hide under "more" button. I came across reddit post with flow explained, but I'm ...
0
votes
1
answer
34
views
Add button in toolbar to perform some processing on data (matplotlib)
I have the following code which plots a time-series. I can spanselect inside the upper subplot which applies some processing when pressing the 'z' key and displays this new data inside the lower ...
0
votes
1
answer
34
views
tbar & bbar Working in ReExt but Not in Sencha CMD — Need Assistance
I’ve been working on a project using both ReExt and Sencha CMD. The tbar and bbar functionality works perfectly in ReExt with Vite, but when I try replicating the same in Sencha CMD (Community Edition)...
0
votes
0
answers
25
views
Content inside CollapsingToolbarLayout is not showing in my Fragment
I am trying to implement a CollapsingToolbarLayout inside a Fragment using XML. However, the content inside my CollapsingToolbarLayout is not showing up. I am using AppBarLayout, Toolbar, and ...
1
vote
1
answer
42
views
Restore matplotlib navigation toolbar option
On updating my computer, I lost my favorite button in Matplotlib.
Here's the new configuration:
and here's the old configuration:
The old configuration has that zigzag button (the penultimate one, ...
0
votes
0
answers
29
views
Custom Toolbar not working on self hosted version of TinyMCE
The toolbar line works on the non-self hosted version but the same line here doesn't change anything.
I have this:
tinymce.init({
selector: '#mytextarea',
license_key: 'gpl',
toolbar: 'bullist ...
0
votes
2
answers
51
views
KivyMD MDTopAppBar not display any content
I'm trying to copy the code that is presented on the official website from the developers of MDTopAppBar:
from kivy.lang import Builder
from kivy.metrics import dp
from kivymd.app import MDApp
from ...
0
votes
0
answers
22
views
iOS Keyboard Toolbar disappearing when consecutive sheets are presented
When adding a Done button to the keyboard toolbar, the toolbar presents and operates as expected on the first view.
If you present multiple views using .sheet() one on top of the other, with each ...
0
votes
1
answer
104
views
SwiftUI Toolbar on Keyboard not shown at first time
When I open my new page, and then select TextField keyboard open but toolbar with done button not shown. After I took my app background mode to foreground mode toolbar with done button shown.
This is ...
1
vote
0
answers
35
views
SwiftUI toolbar bug inside NavigationView
I have code with NavigationView and some NavigationLinks so one of them has toolbar modifier.
My problem is that when I select first NavigationLink toolbar button act normally, but when I go to second ...
0
votes
0
answers
39
views
AgGrid - autoGroupColumn is not visible in tool Panel sideBar
is there a reason that a group column created with autoGroupColumnDef would not appear in the toolPanel? I seem to have the config right. I am creating a simple sideBar that would show 2 columns - one ...
1
vote
1
answer
60
views
Text overlapping over the Toolbar
[I Wrote my first program in jetpack compose and I face this problem that a simple text after putting in a column{} or in a row{} it begins from the toolbar of the emulator means the text gets ...
0
votes
0
answers
15
views
Toolbar overlapping on the text and whenever I create a function outside the MainActivity Class it doesn't gets launched
Whenever I execute the text, the text overlapping over the toolbar and whenever I create a function outside the MainActivity Class it doesn't gets launched. Also when I try to make a separate function ...
0
votes
0
answers
70
views
In WPF, how can I hide, disable, remove a ToolBar Scrollbar?
I'm using WPF in VS 2022
I'm creating a media player and put the buttons in a Toolbar. There are a couple of things I would like to remove, but maybe it's not possible. I'm assuming the object on the ...
-1
votes
2
answers
2k
views
Google Docs Menu and Toolbar
The font size on my Menu and Toolbar is tiny. Is there a way to increase the text font size?
I Googled for answers, but I only found how to increase the font inside the document, which I already know. ...
0
votes
1
answer
212
views
How to align VStack to top of View but under toolbar
I have put in a great deal of effort to find solutions to this before asking my question here in accordance with the rules. Unfortunately, all solutions previously answered have not worked for me. My ...
0
votes
1
answer
679
views
How do I use the QuickFilter property in MUI DataGrid while using a custom toolbar?
In the documentation for MUI Data Grid, it introduces a quick filter property that you can simply use by including these properties in your DataGrid component:
slots={{ toolbar: GridToolbar }}
...
0
votes
0
answers
23
views
datagrid toolbar item state-dependent
I have a problem. I am learning to wrap datagrid and wrap children in toolbar, but the button display does not change with the state, the props parameter is changed, why?enter image description ...
0
votes
0
answers
40
views
Bokeh Config File To Set Defaults Tools
In Bokeh, you can use a .yaml file to set default values for bokeh plot attributes. Is there a way to set the default tools for a plot using a .yaml file?
Within a script you can change the plot tools ...
0
votes
0
answers
43
views
Handling Toolbar visibility in same View
I have a View in a tab bar application, where I need to hide the toolbar (navigation bar). By using .toolbar(.hidden) on the View, I have hidden the toolbar. But, I need to unhide the same toolbar on ...
-1
votes
1
answer
49
views
How to get a global position of a Widget in QToolbar?
I have the code:
auto toolbar = new QToolBar(&mainWidget);
toolbar->move(50,50); // random pos, but not (0,0);
toolbar->addWidget(new QPushButton("1-button"));
auto secondButton = ...
12
votes
3
answers
6k
views
MatToolbar color doesn't work on Angular Material v18 Red/Rose
I just upgraded my Angular CLI and Angular Material both to v18. All Angular Material components work fine except the MatToolbar. The problem is that the color input doesn't do anything in the mat-...
0
votes
0
answers
36
views
ASP.Net Microsoft Web Report Viewer - Not Rendering Toolbar Buttons Correctly
I have the most basic of web pages setup with a Microsoft report viewer control dropped on it - when I run a simple report (local mode if that makes a difference) the buttons on the control toolbar ...
0
votes
0
answers
25
views
Android actionBar navigation icon not showing desired color
I have created a vector asset drawable with a given colour, but while setting it in actionBar navigation icon , it is showing dark not the desired colour
activity actionBar screenshot
actionBar xml
...
0
votes
2
answers
362
views
How to dismiss keyboard from within toolbar?
The question is best described in code.
struct ContentView: View {
enum FocusedField {
case type1
case type2
}
@State private var text: String = ""
@...
0
votes
0
answers
34
views
Jupyter Notebook Toolbar Icons - Re: Uninstalling nbextensions
I had installed nbextensions in order to hide cell input. I had installed it on juypter notebooks via my conda environment terminal. This lead to more issues than solving it.
I have uninstalled ...
0
votes
1
answer
88
views
Why bottom toolbar items placement is changing when i apply toolbar color scheme modifier in SwiftUI?
So when there is more than 2 toolbar items the default item placement is all the items (ToolbarItem) in the hierarchy to the left and the last item (ToolbarItem) in the hierarchy to the right.
After i ...
0
votes
2
answers
127
views
WPF moniker/images not showing in design view
I'm developing a Visual Studio extension, using the CrispImage UIElement and the monikers feature as per here. However, despite displaying at runtime, they don't at design time. Also tested this in a ...
0
votes
0
answers
33
views
Keeping user customization in CoolBar/ToolBar at restart
In Main Form I have a TCoolBar object that contains two TToolBar objects.
The order/position of the TToolBars can be changed by user (with mouse) but at restart of my application returns in original ...
1
vote
1
answer
30
views
Autoscaling a figure with heatmap + scatter introduces extra padding
The code below
import numpy as np
import plotly.graph_objects as go
def make_blob(n: int) -> np.ndarray:
xx, yy = np.meshgrid(np.arange(n), np.arange(n))
return np.exp(-((xx - n // 2) ** 2 ...
1
vote
2
answers
105
views
How can I transfer toolbar layouts between SSMS versions?
I have upgraded from SSMS 19 to 20. My keyboard shortcuts and the location of the panes (e.g. the Object Explorer) have been remembered, but the items in my toolbars and the positions of those ...
0
votes
1
answer
66
views
Convert an array of UIBarButtonItem to array of ToolbarItem
I'm new to swiftUI. We have both UIKit and swiftUI code in our project and we have some custom logic to add few UIBarButtonItem. I need to pass viewController.navigationItem.rightBarButtonItems array ...
0
votes
0
answers
177
views
How to change Material 3 Native Appbar title text size
I have an app using the native Top App bar (that one that you dont have to define it in the layout).
My problem is that there is no way to change the font size (by default is too big for my taste).
So,...
0
votes
0
answers
344
views
.net maui tabbed page with toolbar
I am migrating from xamarin to maui.
Mobile dev.
Working on a tabbed page, issue is the toolbar is not displaying. Code below:
...
<TabbedPage xmlns="http://schemas.microsoft.com/dotnet/2021/...
0
votes
1
answer
388
views
Not seeing the Git functions in my toolbar in Pycharm
The problem is that after I installed Git and also went to VCS --> Enable Version Control Integration --> Git, I cannot see the functions in the toolbar...
It should look like this: Git working ...
0
votes
1
answer
295
views
How do I do multiple toolbars at the top of a window in SwiftUI on MacOS
I have something like this and both toolbars are on the same line. I want them both stacked on top of each other. One toolbar on top of the other:
struct ToolbarView: View {
@ObservedObject var ...
0
votes
0
answers
28
views
Option menu does not appear in the toolbar after being collapsed inside a fragment
Everything was fine when I implemented the collapsed toolbar until I tried to add an option menu.
This is XML code.
Note: I use fragments, not activities.
<com.google.android.material.appbar....
2
votes
2
answers
99
views
How can I add a different button on Toolbar in Different Activity?
Here's my activity_main.xml, which have a basic Toolbar and two Buttons on the right (and as well a NavigationView):
<?xml version="1.0" encoding="utf-8"?>
<...
0
votes
1
answer
64
views
How can I fix Text("").toolbar causing dead space at the top of my content space
I have a Toolbar View that is causing an issue. The call to
Text( "" ).toolbar is placing adding dead space at the top of
the content window space. I have tried substituting Text()
with ...
0
votes
1
answer
131
views
How do I use a for loop in a toolbar view?
I have written something like the code below. Creating a struct for menu information (MenuInfo) and created a few menu items in an array of MenuInfo's. I'm now trying to walk over those to create the ...
0
votes
0
answers
15
views
Angular Material Toolbar replace div when space runs out
I'm trying to recreate the functionality of the toolbar in this:
https://preview.themeforest.net/item/angular-landing-material-design-angular-app-landing-page/full_screen_preview/21198258
In the an ...
0
votes
1
answer
54
views
Semi-transparent background of toolbar and statusbar
Hello According to the image above, I want to make my toolbar and status bar white so that the background can be seen
enter image description here
enter image description here