Hi@akhtar,
You need to use a plugin to do this task. You can find several plugins for that. One of them is webview_flutter. You need to install this and after that use the below code in your flutter program.
import 'package:webview_flutter/webview_flutter.dart';
return Scaffold(
appBar: AppBar(
title: const Text('Flutter WebView example'),
),
body: const WebView(
initialUrl: 'https://edureka.co',
javascriptMode: JavascriptMode.unrestricted,
),
);
To know more about Flutter, join our Flutter Course today.