You can edit almost every page by Creating an account and confirming your email.

Framework7

From EverybodyWiki Bios & Wiki

Framework7
Stable release
5.7.10 / July 14, 2020 (2020-07-14)
Repositoryhttps://github.com/framework7io/framework7
Engine
    PlatformLinux
    Available inEnglish
    LicenseMIT License
    Websiteframework7.io

    Search Framework7 on Amazon.

    Framework7 is an open source and free framework to develop mobile, desktop or web apps; Framework7 can also be used as a prototyping tool.[1][2][3]

    Features

    Some features of Framework7 are given below:

    • support multiple platforms
    • usage of many tools (e.g. webpack)
    • UI elements
    • Rich ecosystem.[1]

    Example

    Sample code may look like as follows:

    <!DOCTYPE html>
    <html>
      <head>
        <!-- Required meta tags-->
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui, viewport-fit=cover">
        <meta name="apple-mobile-web-app-capable" content="yes">
        <!-- Color theme for statusbar -->
        <meta name="theme-color" content="#2196f3">
        <!-- Your app title -->
        <title>My App</title>
        <!-- Path to Framework7 Library Bundle CSS -->
        <link rel="stylesheet" href="path/to/framework7.bundle.min.css">
        <!-- Path to your custom app styles-->
        <link rel="stylesheet" href="path/to/my-app.css">
      </head>
      <body>
        <!-- App root element -->
        <div id="app">
          <!-- Statusbar overlay -->
          <div class="statusbar"></div>
    
          <!-- Your main view, should have "view-main" class -->
          <div class="view view-main">
            <!-- Initial Page, "data-name" contains page name -->
            <div data-name="home" class="page">
    
              <!-- Top Navbar -->
              <div class="navbar">
                <div class="navbar-inner">
                  <div class="title">Awesome App</div>
                </div>
              </div>
    
              <!-- Bottom Toolbar -->
              <div class="toolbar toolbar-bottom">
                <div class="toolbar-inner">
                  <!-- Toolbar links -->
                  <a href="#" class="link">Link 1</a>
                  <a href="#" class="link">Link 2</a>
                </div>
              </div>
    
              <!-- Scrollable page content -->
              <div class="page-content">
                <p>Page content goes here</p>
                <!-- Link to another page -->
                <a href="/about/">About app</a>
              </div>
            </div>
          </div>
        </div>
        <!-- Path to Framework7 Library Bundle JS-->
        <script type="text/javascript" src="path/to/framework7.bundle.min.js"></script>
        <!-- Path to your app js-->
        <script type="text/javascript" src="path/to/my-app.js"></script>
      </body>
    </html>
    

    [4]

    Parts of ecosystem

    Some parts of the ecosystem are given below:

    • Framework7 Core / API
    • Framework7 Vue
    • Framework7 React
    • Framework7 CLI
    • Framework7 Icons.[5]

    See also

    References

    1. 1.0 1.1 "Framework7 - Full Featured Framework For Building iOS, Android & Desktop Apps". framework7.io. Retrieved 2019-08-21.
    2. Zammetti, Frank (2018-03-10). Practical Webix: Learn to Expedite and Improve your Web Development. Apress. p. 5. ISBN 9781484233849. Search this book on
    3. Sun, Yiyi (2019-01-04). Practical Application Development with AppRun: Building Reliable, High-Performance Web Apps Using Elm-Inspired Architecture, Event Pub-Sub, and Components. Apress. p. 177. ISBN 9781484240694. Search this book on
    4. "App HTML Layout | Framework7 Documentation". framework7.io. Retrieved 2019-08-21.
    5. "Framework7 Documentation". framework7.io. Retrieved 2019-08-21.

    External links


    This article "Framework7" is from Wikipedia. The list of its authors can be seen in its historical and/or the page Edithistory:Framework7. Articles copied from Draft Namespace on Wikipedia could be seen on the Draft Namespace of Wikipedia and not main one.