Popularity
5.4
Stable
Activity
6.7
Stable
5
4
4
Monthly Downloads: 2
Programming language: Haskell
License: MIT License
Latest version: v3.0.0
yesod-form-bootstrap4 alternatives and similar packages
Based on the "yesod" category.
Alternatively, view yesod-form-bootstrap4 alternatives based on common mentions on social networks and blogs.
-
yesod-dsl
A domain specific language and a code generator desined to create RESTful services for managing an RDBMS with Yesod web framework and Persistent. -
yesod-raml
Generate Yesod framework route definitions, documentaiton, mock-handler, and more from your RAML spec. -
yesod-auth-hmac-keccak
DISCONTINUED. An account authentication plugin for yesod with encrypted token transfer. -
yesod-datatables
Routines for implementing server-side processing for DataTables (jQuery grid) in Haskell -
yesod-form-bulma
DISCONTINUED. [GET https://api.github.com/repos/waddlaw/yesod-bulma: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository] -
yesod-s3
DISCONTINUED. Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of yesod-form-bootstrap4 or a related project?
README
yesod-form-bootstrap4
This program replace yesod-form to Bootstrap v4.
Problem
This program is not work for boolField
and checkBoxField
.
Because Bootstrap v4.1 checkbox layout different other. Forms · Bootstrap
Workaround
use Monadic form. and
fooFieldSettings :: FieldSettings master
fooFieldSettings = (bfs ("public" :: Text))
{ fsAttrs = [("class", "form-check-input")]
}