Flutter : Sliding menu and swiping tab - flutter

As part of a training, I'm trying to duplicate this Liberation newspaper mobile application in Flutter. I have a lot of questions about how both the menu that you can scroll like a carousel sideways but also the ability to switch between menus by Swiping from anywhere on the screen to the left or right, which takes you back to the next or previous menu.
Here is the link to a ten second video of the application I want to copy : https://drive.google.com/file/d/1FgHvWh6bggfKGzb5CBFdwWhkM167R0Ne/view
If anyone can take the time to advise me, that would be great, thanks a lot :-)

Related

how open a small page in dialog?

I am looking for a solution for display a window over the page like a dialog box but this box will contains a lot of information. It is for my betting game, i display a list of game with a choice between 1 N and 2.
Here is an image of a betting game named netbet :
As you can see i have selected 2.10 in the game Slavia Mozyr/ FC Minsk and a window appears at the bottom of the page for set the amount of money i need to bet. I think it will be better,because mobile screen are very little, displaying a window over the page like a dialog box. Is there a solution for do that in flutter ? Thanks
You might want to use Bottom sheet which does the exact task. It opens a small 'page' (read: widget) over the normal app screen. It'll allow to place the bet etc. It vanishes when use taps anywhere outside.
Sample implementation is here. You can also check solid bottom sheet.

Blackberry 10 Left Slider

The menu slider that the menu is popping out from the left side of the screen is awesome.
"I was just trying to see how it can be emulated in my application.
Any one has a clue how it can be achieved?"
I want it to look exactly like on the picture, with menu items on the left.
There is a similar Android Question
You can use TabbedPane for that purpose, having left menu populated with set of Actions. However, usage of TabbedPane means you have to use Tabs.
In your case, you'll most likely have to use Actions menu which pops out from the right side as this complies with Blackberry Design Guidelines and fits your goals as I can see it from the screenshot provided better.

iPhone app with a 'Left' nav.

I've been asked to create an iphone app with a left nav/menu. Since there are no native UI components to use for this, I was wondering what would be the best way to achieve this. The only app that I remember that had this kind of thing was the Facebook app from about 18months ago.
Is there a good 3rd party API to handle this kind of thing?
Description of the left nav: There is a permanent left nav along the left of the screen running the full length of the screen. When the user selects a menu option a UIView/UIViewController slide in from the right side and covers over the menu. A little button is left stuck to the left side of the screen. If the user selects this button the view slides back to the right again, and the leftnav menu appears from underneath the view and it is possible to interact with again.
Where is the problem? just create a UIView with subview containing UIButtons, you have to layout the buttons yourself (calculate the frame). Later you add that leftmenuView to the UiViewCobtroller.

Jscrollpane and sliding tabs combination doesn't work

I have a test page that I have working with sliding tabs
(http://www.maggies-bayfield.com/wp/temp/old/slider_no_jscroll.htm).
if you click on a navbar item, the page scrolls down to the
appropriate place. this is exactly what I want. however, Android OS
doesn't support overflow:auto etc. and I NEED this to work on all
mobile devices. So, I found Jscrollpane and implemented it on my test
page. it works great (scroll bar shows up on android) but the sliding
tabs are now broken (http://www.maggies-bayfield.com/wp/temp/old/
jscroll_breaks_slider.htm).
Anyone have any ideas or solutions?
Much appreciated!
again:
sliding tabs with out jscrollpane: http://www.maggies-bayfield.com/wp/temp/old/slider_no_jscroll.htm
sliding tabs with jscrollpage: http://www.maggies-bayfield.com/wp/temp/old/jscroll_breaks_slider.htm
Thnx!
August

Needed help in UINavigationController in iPhone

I am learning iPhone since i am new bee and wanted to implement something like the following please guide me:
Actually what i want is that i have a navigation controller with 3 screen
1st Screen: Having a button to got Next Screen
2nd Screen: Having some images and Button to upload them onto some web portal and a button to go to next screen
3rd Screen: Having a label Only
Now when i am on 2nd screen i press on Upload Button to upload it onto my web portal it takes about 5-6 minutes depending upon the size of the data. So i want to achieve that i would display a little progress bar on the UINavigation bar and a label which shows me that this much files sent and this much left and i can also goto the next or previous screen using the back button and UIButton on 2nd screen and it keeps on showing me the uploading label and progress bar onto the navigation bar. So please guide me friends how can i achieve this. I have implemented everything regarding uploading and label updating for this much files left and this much files done but what i am not getting is how to add label and progress bar on NAvigation BAr and update it on other screens as well. please guide me. i will be very thankful to you.
I am waiting for some positive responses. Guide me through some code and guidelines and tutorials. i am new bee in iPHone
See ASIHttpRequest library it has some code which you want.