I am trying to use the new FlyoutPage. I have set my Detail and Flyout pages.. now I want to customize the bar (with the hamburger menu), for both iOS and Android.
I need to change colors and add buttons etc.. Is there a way to do that with Xamarin.Forms (without using shell..) ? Or is there at least a sample of how to effectively do that with custom renderers?
I have tried to change the theme in my Android project to make changes, but with no great success.
Last but not least, could I remove the bar to create my own from scratch (but of course keep the flyout) ?
The bar I want to remove
Related
Can someone tell me the best way to make a navbar in angular with tabs. The point is that it does not transfer to other subpages only after clicking on the tab a specific component is displayed. I will need it for an extended form. I don't want a separate path because the data can't disappear you need to be able to navigate between the data to fill.
Use angular material stepper, you can switch between tabs.
https://material.angular.io/components/stepper/overview
Trying to zoom/focus on one element/div and hide other
Please refer to the demo at I want to hide all the other sections of the page and zoom only particular div/chart which is being clicked.Tried fullscreen API but it is not working as expected.
Trying to achieve zoomooz plugin like functionality in Angular . Since npm does not support zoomooz. Is it possible to have same functionality i.e. animated zoom on click. I am using Angular 6 with ng2 charts and want to zoom the div/canvas section on click and back to normal
I'm trying to make my small app in a tray of OSX that will show some info.
The problem is that standard Menu lib allows me to create "natively" looking menus, when I want to make something that looks like this: (screenshot)
Is there a way to create some custom menu items with cells and images or should I create custom window giving the look I want using css? My biggest concern is translucency.
Now I just create it using tempate with Menu.buildFromTemplate. Mayb I'm doing it completely wrong.
Yes, you'll need to create a custom window, you can't create custom menu items via the Electron Menu API.
For your purpose you can use the following package to easily create a custom menu bar application: https://github.com/maxogden/menubar.
Just design your own index.html and custom logics and your are ready to go further.
I am creating a stacked widget, and want to have each widget have its own titlebar. I am adding the stacked widget to a preexisting layout. For some reason none of my stacked widgets have any sort of titlebar or window at all, just a blank space. I see many posts online on how to get rid of titlebars using setWindowFlags(), but not how to add one.
The title bar is a feature that's only added to top-level widgets, also called windows, by the platform's window manager. It's not something that Qt adds or can make appear within a window itself.
You'll need to add the tile bar using a QLabel or a similar widget.
How do I switch between the two screens on the Qt?
For example, I have a button - static text plus a toolbar. Now I will add it to a frame and set it as a central widget. It works well for one window. What if I move it to the next window? Then I need to show some other stuff like another button, some images etc... and what if I come back to the first view again?
How do I show my old widgets back?
I'm not sure I got your problem right but, you could have different scenarios :
You could simply use groupboxes... Some widgets in groupbox1, otherWidget in groupbox2, and you display the groupbox you want to use, hiding the others...
You could use stackedWidget, which simulates "pages" of widgets stacked on top of eachothers... more informations here : http://qt.nokia.com/doc/4.6/qstackedwidget.html.
You could use other way like using tabs : http://doc.trolltech.com/4.6/qtabwidget.html
Maybe this example would be useful to you : http://qt.nokia.com/doc/4.6/dialogs-configdialog.html
Hope it helps a bit !
I'd recommend checking out Animation/States example (should be in /qt/examples/animation/states/ subdirectory of your Qt installation). It shows how to combine state machine representing application logic with presentation layer and get cool animation effects for free (of course if you don't need eye candy, you can set widgets properties without any animation).