<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Anonymous Programmer</title>
    <description>The latest articles on DEV Community by Anonymous Programmer (@anonymousprogrammer).</description>
    <link>https://dev.to/anonymousprogrammer</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F656043%2Fa74b5148-cc12-41ce-b9f3-0ec80b29b035.png</url>
      <title>DEV Community: Anonymous Programmer</title>
      <link>https://dev.to/anonymousprogrammer</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anonymousprogrammer"/>
    <language>en</language>
    <item>
      <title>How to open a PDF in flutter [2021] No Errors!</title>
      <dc:creator>Anonymous Programmer</dc:creator>
      <pubDate>Fri, 25 Jun 2021 20:33:39 +0000</pubDate>
      <link>https://dev.to/anonymousprogrammer/how-to-open-a-pdf-in-flutter-2021-no-errors-3f0j</link>
      <guid>https://dev.to/anonymousprogrammer/how-to-open-a-pdf-in-flutter-2021-no-errors-3f0j</guid>
      <description>&lt;p&gt;Hey Devs,&lt;br&gt;
Today we are gonna open a PDF in our flutter project, I m creating this post cause I was struggling to add PDF in my project. Let's Get Started.&lt;/p&gt;

&lt;p&gt;So you can create a file named pdf_page.dart or any file you want.&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;syncfusion_flutter_pdfviewer: ^19.1.69-beta&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
 Add this in your pubspec.yaml I m using this version nd will recommed you to use the same. &lt;br&gt;
I won't be wasting your time in making this in four steps, I hope you will understand code by yourself...&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import 'package:syncfusion_flutter_pdfviewer/pdfviewer.dart';
import 'package:flutter/material.dart';

class PdfPath extends StatefulWidget {
  @override
  _PdfPathState createState() =&amp;gt; _PdfPathState();
}

class _PdfPathState extends State&amp;lt;PdfPath&amp;gt; {
  final GlobalKey&amp;lt;SfPdfViewerState&amp;gt; _pdfViewerKey = GlobalKey();

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
            title: Text('Books'),
            backgroundColor: Colors.redAccent[400]),
        body: Padding(
          padding: const EdgeInsets.only(),
          child: Center(
            child: SingleChildScrollView(
              child: Center(
                child: Column(children: [
                  SfPdfViewer.network(
                    'http://www.africau.edu/images/default/sample.pdf',
                    key: _pdfViewerKey,
                  ),
                ]),
              ),
            ),
          ),
        ));
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Hope It worked, If didn't please drop the error in comment section I will try my best to resolve your error :)&lt;br&gt;
See you all in the other one&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Best Youtube Channels to learn Flutter [2021]</title>
      <dc:creator>Anonymous Programmer</dc:creator>
      <pubDate>Fri, 25 Jun 2021 20:16:00 +0000</pubDate>
      <link>https://dev.to/anonymousprogrammer/best-youtube-channels-to-learn-flutter-2021-48bd</link>
      <guid>https://dev.to/anonymousprogrammer/best-youtube-channels-to-learn-flutter-2021-48bd</guid>
      <description>&lt;p&gt;Hey What's Up?&lt;br&gt;
In this article we are gonna talk about best Youtube Channels to learn Flutter. Obviously We would be starting from flutter's official youtube channel, &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;FLUTTER &lt;/li&gt;
&lt;li&gt;RetroPortal Studio&lt;/li&gt;
&lt;li&gt;MTECH Viral&lt;/li&gt;
&lt;li&gt;TVAC Studio&lt;/li&gt;
&lt;li&gt;Flutter Explained&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I know I missed many out, So please share in the comments, But Personally these are the only channels I learn nd implement flutter from...&lt;/p&gt;

&lt;p&gt;Bye See you in the other one!&lt;/p&gt;

</description>
      <category>flutter</category>
      <category>fluttter2021</category>
      <category>bestyoutubechannel</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
