Developers.
I am now developing ionic app, and Im using appery.io.
And I added new route and page.
But I dont know where can I set page name in Header.
In which file can I set activeScreen page name.
Please help me.
Thanks.
If you want the header to be the same at all pages then you can open index inside Pages and set header text there as described in Buiding Your First Ionic App tutorial.
Or you can make it dynamic as described in Building a Native App with Ionic, AngularJS and Appery.io tutorial.
Related
I am using "flutter_inappwebview: ^6.0.0-beta.22" package to make my website into a flutter app.
For me now , when I click/tap the branch shortlink/quicklink , it's opening the app. but not redirecting to the particular webpage(sub page).
I want to achieve the functionality of in-app routing ( when a branch shortlink/quicklink is clicked/tapped, it should open the app and redirected to a specific webpage(sub page) inside the app).
I have done the initial integrations in the dashboard , AndroidManifest.xml and Used the code example code from "https://github.com/BranchMetrics/flutter_branch_sdk/blob/master/example/lib/main.dart" .
Is this functionality achievable in webview apps?
if yes, Please guide me.
Any flutter developer (who has worked with deep linking) can help me with this task?
I'm using QR code scanner to redirect users to a specific page of my app.
the url looks like this:
um://com.example.myapp/new-menu
It works fine and redirects to menu page of app, but the problem is menu page also need two params (i.e tblNum, resID). I've used ModalRoute.of(ctx)... method in the menu page to get params.
I've tried with urls like these
um://com.example.myapp/new-menu?tblNum=1&resID=1,
um://com.example.myapp/new-menu/?tblNum=1&resID=1, etc
but they didn't work. Can anyone please help?
Also, I've included the required code in manifest.xml file.
I have recently inherited the Admin/developer role for our page and I am new to Facebook Development. I am attempting to add a new tab to our page and the only option I am getting is to build an App but all of the App options I come across make it sound like it's trying to do more than what I want it to do.
What I want to do is produce a tab on the page. That will link to an app/canvas displaying an image that the user can click to go to our offer.
So far I've built a basic app with Display Name, namespace, Page Tab Name, Page Tab URL and a Tab image. but when I refresh my page I do not get a new tab and when I preview the app page it is not the format I am looking for.
I've tried going through the tutorials but since this is all new to me I ahve yet to make any sense as to what I'm looking for or missing. Could anyone let me know what app format I am looking for? Or am I in the wrong place entirely?
You need to explicitly add an app to a page. Not sure if you've tried it or not but navigate to:
https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID
&display=popup&next=YOUR_PAGE_TAB_URL
Replacing YOUR_APP_ID with your app id and YOUR_PAGE_TAB_URL with the url you set for you page tab.
I want to integrate the facebook login dialog in my app. For that i have checked the facebook developer page to integrate it.
1 - Downloaded facebook sdk package and installed it
2 - added facebook.framework and FBUserSettingsViewResources.bundle in my app
3 - and use its SessionLoginSample
Its running and user can do login using facebook but its open in safary instead of that i want to open it in dialog box.
Answer in here says that do change in facebook.m file but my project does not have it. for that i have downloaded facebook-ios-sdk project from the GITHub and in that project from src folder i have copied all file in my project. Its non arc so added flag fno-objc-arc.
But facebook.m file does not contain that code which answer suggested to change. And also i have implemented graph GraphApiSample but it display error in FBLoginView.
So plz help on this topic any code or tutorial will be highly appreciable.
If you want to open the login page within your app you have to use the FBGraphAPI .
If you want to force the web dialog, you need to specify the login behavior.
If you look in FBSession, there are many methods to open a Session, many of which will take an FBSessionLoginBehavior parameter. If you pass in FBSessionLoginBehaviorForcingWebView for the login behavior, it will force the web view dialog.
I´m trying to place a Facebook button - count on a site.
I´m building the site all the way through javascript.
So I´m adding an iframe inside a div (created through javascript) created used createElement('iframe'). I´ve added the iframe properties as the code I got from facebook page.
The problem is:
In the src iframe property, I have layout setted as 'button_count' (as I want a button_count layout for the site), but it appears as 'standard' layout.
Any help?
Thanks :)
I´ve just changed the src to another one and now it works :)